This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Install Xapian
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







