FFmpeg-Builds/scripts.d/25-gmp.sh

44 lines
711 B
Bash
Raw Normal View History

2020-09-04 14:36:56 +00:00
#!/bin/bash
2020-12-22 21:34:59 +00:00
GMP_SRC="https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.xz"
2020-09-04 14:36:56 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
2021-04-04 21:20:31 +00:00
wget "$GMP_SRC" -O gmp.tar.xz
tar xaf gmp.tar.xz
2020-09-04 14:36:56 +00:00
rm gmp.tar.xz
2021-04-04 21:20:31 +00:00
cd gmp*
2020-09-04 14:36:56 +00:00
2021-04-04 21:20:31 +00:00
autoreconf -i
2020-09-04 14:36:56 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
)
if [[ $TARGET == win* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
elif [[ $TARGET != linux* ]]; then
2020-09-04 14:36:56 +00:00
echo "Unknown target"
return -1
fi
2021-04-04 21:20:31 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
2020-09-04 14:36:56 +00:00
}
ffbuild_configure() {
echo --enable-gmp
}
ffbuild_unconfigure() {
echo --disable-gmp
}