2020-09-05 17:38:50 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-07-12 15:54:12 +00:00
|
|
|
SCRIPT_REPO="https://github.com/sekrit-twc/zimg.git"
|
2023-03-19 11:26:11 +00:00
|
|
|
SCRIPT_COMMIT="71394bd10d833ac48faa255f085c3e702a42921d"
|
2020-09-05 17:38:50 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
2022-07-12 15:54:12 +00:00
|
|
|
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" zimg
|
2020-09-05 17:38:50 +00:00
|
|
|
cd zimg
|
2022-07-13 15:08:04 +00:00
|
|
|
git submodule update --init --recursive --depth=1
|
2020-09-05 17:38:50 +00:00
|
|
|
|
2021-04-04 21:20:31 +00:00
|
|
|
./autogen.sh
|
2020-09-05 17:38:50 +00:00
|
|
|
|
|
|
|
local myconf=(
|
|
|
|
--prefix="$FFBUILD_PREFIX"
|
|
|
|
--disable-shared
|
|
|
|
--enable-static
|
2021-05-13 00:17:17 +00:00
|
|
|
--with-pic
|
2020-09-05 17:38:50 +00:00
|
|
|
)
|
|
|
|
|
2021-05-14 02:52:29 +00:00
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
2020-09-05 17:38:50 +00:00
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
)
|
2021-05-14 02:52:29 +00:00
|
|
|
else
|
2020-09-05 17:38:50 +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-05 17:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_configure() {
|
|
|
|
echo --enable-libzimg
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_unconfigure() {
|
|
|
|
echo --disable-libzimg
|
|
|
|
}
|