Skip to content
Overbryd edited this page Sep 12, 2010 · 13 revisions

UPDATE / REORGANISATION
====

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
=========

Installation Information

Download Xapian

Xapian on freshmeat.net
(There you can subscribe for updates on the Xapian project)

Install Xapian on Mac OSX
=========
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
Clone this wiki locally