Created
September 2, 2017 18:30
-
-
Save skunkworker/820097464fd9c7c5dd16f69f337fbe4c to your computer and use it in GitHub Desktop.
Compile Vips 8.5.8 on Travis CI
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dist: trusty | |
before_install: | |
- chmod +x travis_compile_vips.sh | |
- ./travis_compile_vips.sh | |
cache: | |
directories: | |
- vips-8.5.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -ex | |
if [ -d "vips-8.5.8"]; then | |
cd vips-8.5.8/ | |
sudo make install; | |
else | |
curl -L https://github.com/jcupitt/libvips/releases/download/v8.5.8/vips-8.5.8.tar.gz | tar xz; | |
cd vips-8.5.8; | |
sudo dpkg --configure -a; | |
sudo sh -c ' echo "/usr/local/lib/" >> /etc/ld.so.conf.d/local.conf;' | |
./configure; | |
make; | |
sudo make install; | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment