FFmpeg-Builds/scripts.d/50-libass.sh

49 lines
810 B
Bash
Raw Normal View History

2020-09-04 18:26:58 +00:00
#!/bin/bash
2020-09-04 21:30:11 +00:00
ASS_REPO="https://github.com/libass/libass.git"
2021-04-03 23:09:54 +00:00
ASS_COMMIT="49f116ab1fa4386f6a5191f322ac29872279516e"
2020-09-04 18:26:58 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
2020-09-05 14:38:11 +00:00
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
2020-09-04 18:26:58 +00:00
}
ffbuild_dockerbuild() {
2020-09-05 20:34:23 +00:00
git-mini-clone "$ASS_REPO" "$ASS_COMMIT" ass
2020-09-04 21:30:11 +00:00
cd ass
2020-09-04 18:26:58 +00:00
2021-04-04 21:20:31 +00:00
./autogen.sh
2020-09-04 18:26:58 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
)
if [[ $TARGET == win* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
2021-04-04 21:20:31 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
2020-09-04 21:30:11 +00:00
}
ffbuild_configure() {
echo --enable-libass
}
ffbuild_unconfigure() {
echo --disable-libass
2020-09-04 18:26:58 +00:00
}