Skip to content

Commit af14bd3

Browse files
committed
Try to install xapian-core from source. Deb package on ubuntu trusty
is not new enough to support 1.3.7 python bindings needed for python 3 support.
1 parent dfd96e6 commit af14bd3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@ sudo: false
1212
addons:
1313
apt:
1414
packages:
15-
# Required to build/install the xapian-binding
16-
- libxapian-dev
1715
# Required to install pyme
1816
- libgpgme11-dev
1917
- swig
2018

2119
before_install:
2220
- cd /tmp
21+
# install core 1.3.7 as version in trusty deb is 1.2. need 1.3 for python 3.
22+
- 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
2326
- curl -s -O https://oligarchy.co.uk/xapian/1.3.7/xapian-bindings-1.3.7.tar.xz
2427
- tar -Jxvf xapian-bindings-1.3.7.tar.xz
2528
- cd xapian-bindings-1.3.7/

0 commit comments

Comments
 (0)