FFmpeg-Builds/scripts.d/50-libass.sh
2024-11-24 20:00:33 +01:00

43 lines
758 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://github.com/libass/libass.git"
SCRIPT_COMMIT="159cefc9074a9b816d62c6b4251521ab515ecaca"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
./autogen.sh
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
export CFLAGS="$CFLAGS -Dread_file=libass_internal_read_file"
./configure "${myconf[@]}"
make -j$(nproc)
make install
}
ffbuild_configure() {
echo --enable-libass
}
ffbuild_unconfigure() {
echo --disable-libass
}