2020-09-06 19:05:32 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
WEBP_REPO="https://chromium.googlesource.com/webm/libwebp"
|
2021-09-22 13:27:59 +00:00
|
|
|
WEBP_COMMIT="e23cd5481c4d90229e967bc01034fdc355e8978d"
|
2020-09-06 19:05:32 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
|
|
|
git-mini-clone "$WEBP_REPO" "$WEBP_COMMIT" webp
|
|
|
|
cd webp
|
|
|
|
|
2021-04-04 21:20:31 +00:00
|
|
|
./autogen.sh
|
2020-09-06 19:05:32 +00:00
|
|
|
|
|
|
|
local myconf=(
|
|
|
|
--prefix="$FFBUILD_PREFIX"
|
|
|
|
--disable-shared
|
|
|
|
--enable-static
|
|
|
|
--with-pic
|
|
|
|
--enable-libwebpmux
|
|
|
|
--disable-libwebpextras
|
|
|
|
--disable-libwebpdemux
|
|
|
|
--disable-sdl
|
|
|
|
--disable-gl
|
|
|
|
--disable-png
|
|
|
|
--disable-jpeg
|
|
|
|
--disable-tiff
|
|
|
|
--disable-gif
|
|
|
|
)
|
|
|
|
|
2021-05-14 02:52:29 +00:00
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
2020-09-06 19:05:32 +00:00
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
)
|
2021-05-14 02:52:29 +00:00
|
|
|
else
|
2020-09-06 19:05:32 +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-06 19:05:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_configure() {
|
|
|
|
echo --enable-libwebp
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_unconfigure() {
|
|
|
|
echo --disable-libwebp
|
|
|
|
}
|