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

44 lines
747 B
Bash
Raw Permalink Normal View History

2020-09-04 14:36:56 +00:00
#!/bin/bash
2023-07-09 17:44:10 +00:00
SCRIPT_REPO="https://github.com/BtbN/gmplib.git"
SCRIPT_COMMIT="1d7f62515fc8f5109fabace9592d863417f17c37"
2020-09-04 14:36:56 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
2023-07-09 17:44:10 +00:00
cd "$FFBUILD_DLDIR/$SELF"
./.bootstrap
2020-09-04 14:36:56 +00:00
local myconf=(
--prefix="$FFBUILD_PREFIX"
2022-07-13 12:19:14 +00:00
--enable-maintainer-mode
2020-09-04 14:36:56 +00:00
--disable-shared
--enable-static
2021-12-11 00:57:56 +00:00
--with-pic
2020-09-04 14:36:56 +00:00
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
2020-09-04 14:36:56 +00:00
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
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
}