FFmpeg-Builds/scripts.d/50-fdk-aac.sh

46 lines
839 B
Bash
Raw Normal View History

2021-06-20 20:15:10 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://github.com/mstorsjo/fdk-aac.git"
SCRIPT_COMMIT="3f864cce9736cc8e9312835465fae18428d76295"
2021-06-20 20:15:10 +00:00
ffbuild_enabled() {
[[ $VARIANT == nonfree* ]] || return -1
return 0
}
ffbuild_dockerbuild() {
2022-07-12 15:54:12 +00:00
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" fdk
2021-06-20 20:15:10 +00:00
cd fdk
./autogen.sh
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
--disable-example
)
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-libfdk-aac
}
ffbuild_unconfigure() {
echo --disable-libfdk-aac
}