Skip to content

Commit

Permalink
Merge 7ca1837 into 17d38d0
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Nov 19, 2016
2 parents 17d38d0 + 7ca1837 commit 992d68b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions depends/install_webp.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/bin/bash
# install webp

if [ ! -f libwebp-0.5.0.tar.gz ]; then
wget -O 'libwebp-0.5.0.tar.gz' 'https://github.com/python-pillow/pillow-depends/blob/master/libwebp-0.5.0.tar.gz?raw=true'
if [ ! -f libwebp-0.5.1.tar.gz ]; then
wget -O 'libwebp-0.5.1.tar.gz' 'https://github.com/python-pillow/pillow-depends/blob/master/libwebp-0.5.1.tar.gz?raw=true'
fi

rm -r libwebp-0.5.0
tar -xvzf libwebp-0.5.0.tar.gz
rm -r libwebp-0.5.1
tar -xvzf libwebp-0.5.1.tar.gz

pushd libwebp-0.5.0
pushd libwebp-0.5.1

./configure --prefix=/usr --enable-libwebpmux --enable-libwebpdemux && make -j4 && sudo make -j4 install

Expand Down
8 changes: 4 additions & 4 deletions winbuild/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@
'version': '8.6.5',
},
'webp': {
'url': 'http://downloads.webmproject.org/releases/webp/libwebp-0.5.0.tar.gz',
'filename': PILLOW_DEPENDS_DIR + 'libwebp-0.5.0.tar.gz',
'hash': 'sha1:d3de815b272fcf88fc4f2dc1ab65d176bcb8df68',
'dir': 'libwebp-0.5.0',
'url': 'http://downloads.webmproject.org/releases/webp/libwebp-0.5.1.tar.gz',
'filename': PILLOW_DEPENDS_DIR + 'libwebp-0.5.1.tar.gz',
'hash': 'sha1:66efb2213015ad3460bef64b4fb218fdc10ce83f',
'dir': 'libwebp-0.5.1',
},
'openjpeg': {
'url': SF_MIRROR+'/project/openjpeg/openjpeg/2.1.0/openjpeg-2.1.0.tar.gz',
Expand Down

0 comments on commit 992d68b

Please sign in to comment.