From 74803dfd736c8e6853da800298146f70301c9bc8 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Tue, 19 May 2015 13:01:03 +1000 Subject: [PATCH] Update WebP from 0.4.1 to 0.4.3 --- depends/install_webp.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/depends/install_webp.sh b/depends/install_webp.sh index 7810159cc..97edf2bcf 100755 --- a/depends/install_webp.sh +++ b/depends/install_webp.sh @@ -1,14 +1,14 @@ #!/bin/bash # install webp -if [ ! -f libwebp-0.4.1.tar.gz ]; then - wget 'http://downloads.webmproject.org/releases/webp/libwebp-0.4.1.tar.gz' +if [ ! -f libwebp-0.4.3.tar.gz ]; then + wget 'http://downloads.webmproject.org/releases/webp/libwebp-0.4.3.tar.gz' fi -rm -r libwebp-0.4.1 -tar -xvzf libwebp-0.4.1.tar.gz +rm -r libwebp-0.4.3 +tar -xvzf libwebp-0.4.3.tar.gz -pushd libwebp-0.4.1 +pushd libwebp-0.4.3 ./configure --prefix=/usr --enable-libwebpmux --enable-libwebpdemux && make -j4 && sudo make -j4 install