summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2019-11-22 14:06:49 +0100
committerMichele Calgaro <michele.calgaro@yahoo.it>2019-11-27 23:07:06 +0900
commit9a2ffe6c188b2049f76c8cf608a3b530a6c23d28 (patch)
tree573b1e41d549851839e381b63e4707776992d98c /INSTALL
parente2e116f8adc3a7f732ac70a3c795deaedf8b3f4c (diff)
downloadfilelight-9a2ffe6c188b2049f76c8cf608a3b530a6c23d28.tar.gz
filelight-9a2ffe6c188b2049f76c8cf608a3b530a6c23d28.zip
Drop automake build support.
Add basic cmake build instructions. Add a man page taken from Debian packaging. Delete empty file NEWS. Rework on the README, INSTALL and help page. Signed-off-by: gregory guy <gregory-tde@laposte.net> (cherry picked from commit 8a5ab0cb65d78b80d7b9654077e24b8078b840df)
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL45
1 files changed, 12 insertions, 33 deletions
diff --git a/INSTALL b/INSTALL
index d263cb4..644caaa 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,36 +1,15 @@
+Basic Installation
+==================
- Filelight INSTALL
-===================
+Filelight relies on cmake to build.
-Simply:
+Here are suggested default options:
- $ ./configure && make && su -c "make install"
-
-But, I recommend:
-
- $ CXXFLAGS="-O3" ./configure --enable-final --disable-debug \
- && make && su -c "make install"
-
-
- Troubleshooting
-=================
-
-Check you have the kde development packages installed, they'll be named
-something like:
-
- kde-devel
-
-This should pull in a lot of other development packages (unless they are already
-installed) like:
-
- x11-devel
- qt-devel
-
-If you get stuck, please email me the config.log file with any information you
-can provide. I will get back to you! Compile issues suck, I know this full well.
---------------------------------------------------------------------------------
-
-
-I hope you enjoy using Filelight!
-
-Max Howell <max.howell@methylblue.com>
+ -DCMAKE_INSTALL_PREFIX="/opt/trinity" \
+ -DCONFIG_INSTALL_DIR="/etc/trinity" \
+ -DSYSCONF_INSTALL_DIR="/etc" \
+ -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+ -DCMAKE_VERBOSE_MAKEFILE="ON" \
+ -DCMAKE_SKIP_RPATH="OFF" \
+ -DBUILD_ALL="ON"