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 dfd96e6 commit af14bd3Copy full SHA for af14bd3
.travis.yml
@@ -12,14 +12,17 @@ sudo: false
12
addons:
13
apt:
14
packages:
15
- # Required to build/install the xapian-binding
16
- - libxapian-dev
17
# Required to install pyme
18
- libgpgme11-dev
19
- swig
20
21
before_install:
22
- cd /tmp
+ # install core 1.3.7 as version in trusty deb is 1.2. need 1.3 for python 3.
+ - curl -s -O https://oligarchy.co.uk/xapian/1.3.7/xapian-core-1.3.7.tar.xz
23
+ - tar -Jxvf xapian-core-1.3.7.tar.xz
24
+ - cd xapian-core-1.3.7/
25
+ - ./configure && make && make install
26
- curl -s -O https://oligarchy.co.uk/xapian/1.3.7/xapian-bindings-1.3.7.tar.xz
27
- tar -Jxvf xapian-bindings-1.3.7.tar.xz
28
- cd xapian-bindings-1.3.7/
0 commit comments