mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
c07f91474d
We may need entries with spaces in makeopts, installopts, and configopts, and at that point we should also convert depends and auth_opts to avoid confusion.
26 lines
1 KiB
Bash
Executable file
26 lines
1 KiB
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=ffmpeg
|
|
version=4.4
|
|
useconfigure=true
|
|
depends=("libiconv" "libtiff" "xz" "bzip")
|
|
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
|
|
}
|
|
|
|
install() {
|
|
run make DESTDIR=${SERENITY_INSTALL_ROOT} "${installopts[@]}" install
|
|
for lib in libavcodec libavdevice libavfilter libavformat libavutil; do
|
|
${CC} -shared -o ${SERENITY_INSTALL_ROOT}/usr/local/lib/${lib}.so -Wl,-soname,${lib}.so -Wl,--whole-archive ${SERENITY_INSTALL_ROOT}/usr/local/lib/${lib}.a -Wl,--no-whole-archive -liconv -ltiff -llzma -lbz2
|
|
rm -f ${SERENITY_INSTALL_ROOT}/usr/local/lib/$lib.la
|
|
done
|
|
}
|