We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab7a6b9 commit ee6cc59Copy full SHA for ee6cc59
.travis.yml
@@ -20,10 +20,12 @@ addons:
20
- swig
21
22
before_install:
23
+ - pip install sphinx==1.8.5
24
+ - XAPIAN_VER=$(dpkg -l libxapian-dev | tail -n 1 | awk '{print $3}' | cut -d '-' -f 1)
25
- cd /tmp
- - curl -s -O https://oligarchy.co.uk/xapian/1.2.16/xapian-bindings-1.2.16.tar.xz
- - tar -Jxvf xapian-bindings-1.2.16.tar.xz
26
- - cd xapian-bindings-1.2.16/
+ - curl -s -O https://oligarchy.co.uk/xapian/$XAPIAN_VER/xapian-bindings-1.2.16.tar.xz
27
+ - tar -Jxvf xapian-bindings-$XAPIAN_VER.tar.xz
28
+ - cd xapian-bindings-$XAPIAN_VER/
29
- ./configure --prefix=$VIRTUAL_ENV --with-python && make && make install
30
31
# change back to the checked out repository directory
0 commit comments