2014-05-19 13:54:04 +02:00
|
|
|
language: cpp
|
|
|
|
before_install:
|
|
|
|
- sudo add-apt-repository ppa:lyrasis/precise-backports -y
|
|
|
|
- sudo apt-get update -qq
|
2015-04-14 12:57:05 +02:00
|
|
|
- sudo apt-get install automake gtk-doc-tools
|
2015-04-14 12:14:25 +02:00
|
|
|
- sudo apt-get install libfftw3-dev libglib2.0-dev libjpeg-turbo8-dev
|
|
|
|
- sudo apt-get install libpng12-dev libwebp-dev libtiff4-dev libxml2-dev
|
|
|
|
- sudo apt-get install swig libmagick++-dev bc libgsf-1-dev
|
|
|
|
- sudo apt-get install libcfitsio3-dev libgsl0-dev libmatio-dev
|
|
|
|
- sudo apt-get install liborc-0.4-dev liblcms2-dev libopenslide-dev
|
|
|
|
- sudo apt-get install python-dev python3-dev
|
2015-04-14 12:57:05 +02:00
|
|
|
- wget http://ftp.gnome.org/pub/GNOME/sources/gobject-introspection/1.31/gobject-introspection-1.31.22.tar.xz
|
|
|
|
- tar -xf gobject-introspection-1.31.22.tar.xz
|
2015-04-14 14:01:30 +02:00
|
|
|
- export DIR=$(pwd)/gobject-introspection-1.31.22
|
|
|
|
- cd $DIR && ./configure --prefix=/usr && make
|
|
|
|
- sudo bash -c 'cd $DIR && make install'
|
2015-04-14 12:57:05 +02:00
|
|
|
- wget http://ftp.gnome.org/pub/GNOME/sources/pygobject/3.10/pygobject-3.10.2.tar.xz
|
|
|
|
- tar -xf pygobject-3.10.2.tar.xz
|
2015-04-14 14:01:30 +02:00
|
|
|
- export DIR=$(pwd)/pygobject-3.10.2
|
|
|
|
- cd $DIR && ./configure --prefix=/usr && make
|
|
|
|
- sudo bash -c 'cd $DIR && make install'
|
2014-05-19 13:54:04 +02:00
|
|
|
before_script:
|
|
|
|
- ./bootstrap.sh
|
2015-04-13 22:55:37 +02:00
|
|
|
- ./configure
|
2014-05-19 13:54:04 +02:00
|
|
|
- make
|
|
|
|
- sudo make install
|
|
|
|
- sudo ldconfig
|
2015-04-13 19:30:27 +02:00
|
|
|
- sudo cp python/Vips.py /usr/lib/python2.7/dist-packages/gi/overrides
|
|
|
|
- sudo cp python/Vips.py /usr/lib/python3/dist-packages/gi/overrides
|
|
|
|
script:
|
|
|
|
- make check
|