46 lines
942 B
Bash
Executable file
46 lines
942 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://git.code.sf.net/p/opencore-amr/code"
|
|
SCRIPT_COMMIT="7dba8c32238418ce0b316a852b2224df586ca896"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" opencore
|
|
cd opencore
|
|
|
|
autoreconf -i
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--disable-shared
|
|
--enable-static
|
|
--with-pic
|
|
--enable-amrnb-encoder
|
|
--enable-amrnb-decoder
|
|
--disable-examples
|
|
)
|
|
|
|
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-libopencore-amrnb --enable-libopencore-amrwb
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-libopencore-amrnb --disable-libopencore-amrwb
|
|
}
|