2020-09-19 22:46:24 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-07-12 18:28:45 +00:00
|
|
|
SCRIPT_REPO="https://git.code.sf.net/p/opencore-amr/code"
|
2022-08-02 18:10:01 +00:00
|
|
|
SCRIPT_COMMIT="7dba8c32238418ce0b316a852b2224df586ca896"
|
2020-09-19 22:46:24 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
2022-07-12 18:28:45 +00:00
|
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" opencore
|
2020-09-19 22:46:24 +00:00
|
|
|
cd opencore
|
|
|
|
|
|
|
|
autoreconf -i
|
|
|
|
|
|
|
|
local myconf=(
|
|
|
|
--prefix="$FFBUILD_PREFIX"
|
|
|
|
--disable-shared
|
|
|
|
--enable-static
|
|
|
|
--with-pic
|
|
|
|
--enable-amrnb-encoder
|
|
|
|
--enable-amrnb-decoder
|
|
|
|
--disable-examples
|
|
|
|
)
|
|
|
|
|
2021-05-14 02:52:29 +00:00
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
2020-09-19 22:46:24 +00:00
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
)
|
2021-05-14 02:52:29 +00:00
|
|
|
else
|
2020-09-19 22:46:24 +00:00
|
|
|
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
|
|
|
|
}
|