Ports: ffmpeg 4.4

This commit is contained in:
Holden Green 2021-04-29 00:23:11 -07:00 committed by Andreas Kling
parent 18a641f3f8
commit 0d74dffe3b
Notes: sideshowbarker 2024-07-18 18:56:47 +09:00

17
Ports/ffmpeg/package.sh Executable file
View 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
}