This is a GUI for the Strigi Desktop Search software.

Strigi can be found in KDE svn at /trunk/playground/base/strigi.
When you have compiled and installed Strigi, you can use this GUI access Strigi from the Kicker panel in KDE3.

To compile the strigiapplet, perform the following steps:

Check out the code with

 svn co -N anonsvn.kde.org/home/kde/trunk/playground/base
 cd base
 svn co anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin
 svn co anonsvn.kde.org/home/kde/trunk/playground/base/strigiapplet

Compile the code with the followings steps. Make sure you include the strigi header and the strigi libraries in the include and library paths with --with-extra-includes and --with-extra-libs:

 make -f Makefile.cvs
 mkdir debug && cd debug
 ../configure --enable-debug=full
 make

And install:

 make install


When using cmake, do this:

mkdir build
cd build
export QTDIR=/usr/lib/qt3
cmake -DCMAKE_INCLUDE_PATH=${HOME}/testinstall/include \
	-DCMAKE_LIBRARY_PATH=${HOME}/testinstall/lib \
	-DCMAKE_INSTALL_PREFIX=${HOME}/testinstall ..
