Pillow/depends/install_openjpeg.sh

13 lines
273 B
Bash
Raw Normal View History

2014-03-27 00:22:37 +04:00
#!/bin/bash
# install openjpeg
2017-10-05 12:11:31 +03:00
archive=openjpeg-2.3.0
2014-03-27 00:22:37 +04:00
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/master/$archive.tar.gz
pushd $archive
2014-03-27 00:22:37 +04:00
cmake -DCMAKE_INSTALL_PREFIX=/usr . && make -j4 && sudo make -j4 install
2014-03-27 00:22:37 +04:00
popd