Install Xapian on Mac – Text Search in real time

XapianI installed xapian today on a Mac 10.5.7 and it worked seamlessly, so I’m just passing on the goodies that are xapian.  Generally you won’t need to install xapian on a Mac unless it is Dev work.
http://wiki.github.com/robertbrook/kb/xapian-install-on-mac-osx

curl -O http://oligarchy.co.uk/xapian/1.0.7/xapian-core-1.0.7.tar.gz

curl -O http://oligarchy.co.uk/xapian/1.0.7/xapian-bindings-1.0.7.tar.gz

tar xvzf xapian-core-1.0.7.tar.gz

tar xvzf xapian-bindings-1.0.7.tar.gz

cd xapian-core-1.0.7

./configure

make

sudo make install

cd ..

cd xapian-bindings-1.0.7

./configure

make

sudo make install

cd ..

rm xapian-core-1.0.7.tar.gz

rm xapian-bindings-1.0.7.tar.gz

Posted on September 21, 2009 at 7:20 pm by Jordan Carter · Permalink
In: Web Development · Tagged with: ,

Leave a Reply