File: README

package info (click to toggle)
strigiapplet 0.3.9-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 300 kB
  • ctags: 183
  • sloc: cpp: 1,477; makefile: 8
file content (34 lines) | stat: -rw-r--r-- 1,057 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 ..