Add fdk-aac
This commit is contained in:
parent
63ad0bdf97
commit
5e3d93dd92
1 changed files with 45 additions and 0 deletions
45
scripts.d/50-fdk-aac.sh
Executable file
45
scripts.d/50-fdk-aac.sh
Executable file
|
@ -0,0 +1,45 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
FDK_REPO="https://github.com/mstorsjo/fdk-aac.git"
|
||||||
|
FDK_COMMIT="801f67f671929311e0c9952c5f92d6e147c7b003"
|
||||||
|
|
||||||
|
ffbuild_enabled() {
|
||||||
|
[[ $VARIANT == nonfree* ]] || return -1
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
ffbuild_dockerbuild() {
|
||||||
|
git-mini-clone "$FDK_REPO" "$FDK_COMMIT" fdk
|
||||||
|
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
|
||||||
|
}
|
Loading…
Reference in a new issue