FFmpeg-Builds/scripts.d/50-libass.sh
2021-12-31 21:48:23 +01:00

44 lines
746 B
Bash
Executable file

#!/bin/bash
ASS_REPO="https://github.com/libass/libass.git"
ASS_COMMIT="0d170d9a1d7e7fee948141eac988c1e6391dfc62"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$ASS_REPO" "$ASS_COMMIT" ass
cd ass
./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
./configure "${myconf[@]}"
make -j$(nproc)
make install
}
ffbuild_configure() {
echo --enable-libass
}
ffbuild_unconfigure() {
echo --disable-libass
}