51 lines
958 B
Bash
Executable file
51 lines
958 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://chromium.googlesource.com/webm/libwebp"
|
|
SCRIPT_COMMIT="eac3bd5c53da8bec55a635c6f4234c9cd5753820"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
|
|
|
./autogen.sh
|
|
|
|
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
|
|
)
|
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
|
myconf+=(
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
)
|
|
else
|
|
echo "Unknown target"
|
|
return -1
|
|
fi
|
|
|
|
./configure "${myconf[@]}"
|
|
make -j$(nproc)
|
|
make install
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-libwebp
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-libwebp
|
|
}
|