libwebp: bump version

* disable sse2 and sse4.1
This commit is contained in:
Gerasim Troeglazov
2022-11-29 11:45:24 +10:00
parent e34f561f50
commit 0144377a0d

View File

@@ -9,11 +9,11 @@ compression and typically provides 3x smaller file sizes compared to \
PNG when lossy compression is acceptable for the red/green/blue color \
channels."
HOMEPAGE="https://developers.google.com/speed/webp"
COPYRIGHT="2011 Google Inc."
COPYRIGHT="2011-2022 Google Inc."
LICENSE="BSD (3-clause)"
REVISION="1"
SOURCE_URI="http://downloads.webmproject.org/releases/webp/libwebp-$portVersion.tar.gz"
CHECKSUM_SHA256="7656532f837af5f4cec3ff6bafe552c044dc39bf453587bd5b77450802f4aee6"
CHECKSUM_SHA256="7bf5a8a28cc69bcfa8cb214f2c3095703c6b73ac5fba4d5480c205331d9494df"
ARCHITECTURES="all"
SECONDARY_ARCHITECTURES="x86"
@@ -24,10 +24,10 @@ webpLibs="\
libwebpdemux \
libwebpmux \
"
libwebpVersion="7.1.3"
libwebpdecoderVersion="3.1.3"
libwebpdemuxVersion="2.0.9"
libwebpmuxVersion="3.0.8"
libwebpVersion="7.1.5"
libwebpdecoderVersion="3.1.5"
libwebpdemuxVersion="2.0.11"
libwebpmuxVersion="3.0.10"
for i in $webpLibs; do
eval "${i}VersionCompat=\"\$${i}Version compat >= \${${i}Version%%.*}\""
done
@@ -101,7 +101,8 @@ BUILD()
autoreconf -vfi
runConfigure ./configure \
--enable-libwebpdemux --enable-libwebpmux --enable-libwebpdecoder \
--enable-libwebpextras --enable-swap-16bit-csp --disable-static
--enable-libwebpextras --enable-swap-16bit-csp --disable-static \
--disable-sse4.1 --disable-sse2
make $jobArgs
}