Created
October 9, 2014 20:41
-
-
Save ikks/faa8603f847d8538c99b to your computer and use it in GitHub Desktop.
Installation of xapian inside a virtualenv
This file contains hidden or 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
pkgver=1.2.17 | |
mkdir -p $VIRTUAL_ENV/src && cd $VIRTUAL_ENV/src | |
curl -O http://oligarchy.co.uk/xapian/$pkgver/xapian-core-$pkgver.tar.xz && tar xf xapian-core-$pkgver.tar.xz | |
curl -O http://oligarchy.co.uk/xapian/$pkgver/xapian-bindings-$pkgver.tar.xz && tar xf xapian-bindings-$pkgver.tar.xz | |
cd $VIRTUAL_ENV/src/xapian-core-$pkgver | |
./configure --prefix=$VIRTUAL_ENV && make && make install | |
export LD_LIBRARY_PATH=$VIRTUAL_ENV/lib | |
cd $VIRTUAL_ENV/src/xapian-bindings-$pkgver | |
./configure --prefix=$VIRTUAL_ENV --with-python && make && make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment