summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-12 18:09:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-12 18:09:55 +0000
commit630b7196d93786595546565329160ff26332704b (patch)
tree16f570c8f65cf789945d96ab7c4c7c9a46c10e2f /INSTALL
downloadtdeio-locate-630b7196d93786595546565329160ff26332704b.tar.gz
tdeio-locate-630b7196d93786595546565329160ff26332704b.zip
Added KDE3 version of kio-locate
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kio-locate@1089224 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL55
1 files changed, 55 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..5053a25
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,55 @@
+QUICKSTART
+
+kio-locate uses scons for configuring and building. In general
+it should suffice to execute (if you have scons installed):
+
+$ scons configure
+$ scons
+$ sudo scons install
+
+If you don't have scons installed, you can use the stripped
+down version shipping with kio-locate. This can be found in the
+file scons-mini.tar.bz2 and has to be unpacked.
+
+$ tar xjf scons-mini.tar.bz2
+$ python scons.py configure
+$ python scons.py
+$ sudo python scons.py install
+
+As you can see the command "python scons.py" replaces executing
+"scons" if you don't have that installed. In the following you
+have to bear this in mind.
+
+
+SPECIAL CONFIGURING
+
+On some systems, it might be necessary to configure the project
+using scons configure qtincludes=path1 kdeincludes=path2
+like this:
+$ scons configure qtincludes=/usr/include/qt3/include \
+> kdeincludes=/usr/lib/kde3/include
+When in doubt, use scons --help or scons -h to display the options.
+
+As when using ./configure you can specify using prefix=... where to
+install the package.
+$ scons configure prefix=/usr
+
+To enable debug mode you can use:
+$ scons configure debug=1
+
+To clean the project:
+$ scons -c
+
+And to uninstall kio-locate:
+$ scons -c install
+
+
+NOTE THIS
+
+This is just a very overview about what you can do.
+
+If you encounter problems, please post them (or better their solutions)
+to me, so that I can include them into this guide.
+
+Armin Straub
+linux@arminstraub.de