mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
Ports: ffmpeg 4.4
This commit is contained in:
parent
18a641f3f8
commit
0d74dffe3b
Notes:
sideshowbarker
2024-07-18 18:56:47 +09:00
Author: https://github.com/holdengreen Commit: https://github.com/SerenityOS/serenity/commit/0d74dffe3be Pull-request: https://github.com/SerenityOS/serenity/pull/6717 Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/gmta Reviewed-by: https://github.com/linusg
1 changed files with 17 additions and 0 deletions
17
Ports/ffmpeg/package.sh
Executable file
17
Ports/ffmpeg/package.sh
Executable file
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/env -S bash ../.port_include.sh
|
||||
port=ffmpeg
|
||||
version=4.4
|
||||
useconfigure=true
|
||||
files="https://ffmpeg.org/releases/ffmpeg-${version}.tar.gz ffmpeg-${version}.tar.gz a4abede145de22eaf233baa1726e38e137f5698d9edd61b5763cd02b883f3c7c"
|
||||
auth_type="sha256"
|
||||
installopts="INSTALL_TOP=${SERENITY_INSTALL_ROOT}/usr/local"
|
||||
configopts="SRC_PATH=."
|
||||
|
||||
configure() {
|
||||
run ./configure \
|
||||
--arch="x86_32" \
|
||||
--cc="${CC} -std=gnu99" \
|
||||
--cxx="${CXX} -std=gnu99" \
|
||||
--disable-network \
|
||||
--enable-cross-compile
|
||||
}
|
Loading…
Reference in a new issue