mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 09:44:31 +03:00
Refactor to avoid repeated version number
This commit is contained in:
parent
0cfd2caa0c
commit
d764a4c985
12
depends/download-and-extract.sh
Executable file
12
depends/download-and-extract.sh
Executable file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# Usage: ./download-and-extract.sh something.tar.gz https://example.com/something.tar.gz
|
||||||
|
|
||||||
|
archive=$1
|
||||||
|
url=$2
|
||||||
|
|
||||||
|
if [ ! -f $archive.tar.gz ]; then
|
||||||
|
wget -O $archive.tar.gz $url
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -r $archive
|
||||||
|
tar -xvzf $archive.tar.gz
|
|
@ -1,19 +1,12 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# install openjpeg
|
# install openjpeg
|
||||||
|
|
||||||
|
archive=openjpeg-2.1.2
|
||||||
|
|
||||||
if [ ! -f openjpeg-2.1.2.tar.gz ]; then
|
./download-and-extract.sh $archive https://github.com/python-pillow/pillow-depends/blob/master/$archive.tar.gz?raw=true
|
||||||
wget -O 'openjpeg-2.1.2.tar.gz' 'https://github.com/python-pillow/pillow-depends/blob/master/openjpeg-2.1.2.tar.gz?raw=true'
|
|
||||||
|
|
||||||
fi
|
pushd $archive
|
||||||
|
|
||||||
rm -r openjpeg-2.1.2
|
|
||||||
tar -xvzf openjpeg-2.1.2.tar.gz
|
|
||||||
|
|
||||||
|
|
||||||
pushd openjpeg-2.1.2
|
|
||||||
|
|
||||||
cmake -DCMAKE_INSTALL_PREFIX=/usr . && make -j4 && sudo make -j4 install
|
cmake -DCMAKE_INSTALL_PREFIX=/usr . && make -j4 && sudo make -j4 install
|
||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,11 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# install webp
|
# install webp
|
||||||
|
|
||||||
if [ ! -f libwebp-0.5.2.tar.gz ]; then
|
archive=libwebp-0.5.2
|
||||||
wget -O 'libwebp-0.5.2.tar.gz' 'https://github.com/python-pillow/pillow-depends/blob/master/libwebp-0.5.2.tar.gz?raw=true'
|
|
||||||
fi
|
|
||||||
|
|
||||||
rm -r libwebp-0.5.2
|
./download-and-extract.sh $archive https://github.com/python-pillow/pillow-depends/blob/master/$archive.tar.gz?raw=true
|
||||||
tar -xvzf libwebp-0.5.2.tar.gz
|
|
||||||
|
|
||||||
pushd libwebp-0.5.2
|
pushd $archive
|
||||||
|
|
||||||
./configure --prefix=/usr --enable-libwebpmux --enable-libwebpdemux && make -j4 && sudo make -j4 install
|
./configure --prefix=/usr --enable-libwebpmux --enable-libwebpdemux && make -j4 && sudo make -j4 install
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user