43 lines
746 B
Bash
Executable file
43 lines
746 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ASS_REPO="https://github.com/libass/libass.git"
|
|
ASS_COMMIT="ac2ddef8841aa2ff37ca9b83f19f15092d0cacc6"
|
|
|
|
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
|
|
}
|