-
Notifications
You must be signed in to change notification settings - Fork 32
Install Xapian
Overbryd edited this page Sep 12, 2010
·
13 revisions
UPDATE / REORGANISATION
====
- The project is no longer maintained by Francis Irving (alias frabcus). For that reason this wiki page about installing xapian isn’t updated any longer.
- For installation instructions on xapian and it’s ruby bindings see here.
- Thank you for your understanding.
Contents
====
Some contents where taken from Jim’s excellent post.
See here
In order to use acts_as_xapian you have to install Xapian and its bindings for other languages (including Ruby).
- a. Official Docs, related Information
- b. Install Xapian on Mac OSX
- c. (more is coming soon)
a. Official Docs, related Information
=========
Xapian on freshmeat.net
(There you can subscribe for updates on the Xapian project)
=========
cd /usr/local/src
Download & install xapian-core to /opt:
wget http://oligarchy.co.uk/xapian/1.0.9/xapian-core-1.0.9.tar.gz
tar xzvf xapian-core-1.0.9.tar.gz
cd xapian-core-1.0.9
./configure —prefix=/opt
make
sudo make install
Download & install xapian-bindings to /opt:
wget http://oligarchy.co.uk/xapian/1.0.9/xapian-bindings-1.0.9.tar.gz
tar xzvf xapian-bindings-1.0.9.tar.gz
cd xapian-bindings-1.0.9
./configure —prefix=/opt XAPIAN_CONFIG=/opt/bin/xapian-config
make
sudo make install