Remove install_openjpeg.sh

This commit is contained in:
hugovk 2014-08-18 09:17:46 +03:00
parent 30979d4dd4
commit cdd6a12150
2 changed files with 1 additions and 23 deletions

View File

@ -26,9 +26,6 @@ install:
# webp # webp
- pushd depends && ./install_webp.sh && popd - pushd depends && ./install_webp.sh && popd
# openjpeg
- pushd depends && ./install_openjpeg.sh && popd
script: script:
- coverage erase - coverage erase
- python setup.py clean - python setup.py clean

View File

@ -1,19 +0,0 @@
#!/bin/bash
# install openjpeg
if [ ! -f openjpeg-2.1.0.tar.gz ]; then
wget 'http://iweb.dl.sourceforge.net/project/openjpeg.mirror/2.1.0/openjpeg-2.1.0.tar.gz'
fi
rm -r openjpeg-2.1.0
tar -xvzf openjpeg-2.1.0.tar.gz
pushd openjpeg-2.1.0
cmake -DCMAKE_INSTALL_PREFIX=/usr . && make && sudo make install
popd