Repository URL to install this package:
|
Version:
5.2.0 ▾
|
#!/bin/bash
# install openjpeg
archive=openjpeg-2.3.0
./download-and-extract.sh $archive https://raw.githubusercontent.com/python-pillow/pillow-depends/master/$archive.tar.gz
pushd $archive
cmake -DCMAKE_INSTALL_PREFIX=/usr . && make -j4 && sudo make -j4 install
popd