diff options
author | gregory guy <[email protected]> | 2019-11-22 14:06:49 +0100 |
---|---|---|
committer | TDE Gitea <[email protected]> | 2019-11-27 14:01:24 +0000 |
commit | 8a5ab0cb65d78b80d7b9654077e24b8078b840df (patch) | |
tree | ad68775a52c90009218061a07cc181a5acfb4470 /INSTALL | |
parent | c883e565c7ecc643a4cf9b5b8fdb0570f962f30c (diff) | |
download | filelight-8a5ab0cb65d78b80d7b9654077e24b8078b840df.tar.gz filelight-8a5ab0cb65d78b80d7b9654077e24b8078b840df.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 <[email protected]>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 45 |
1 files changed, 12 insertions, 33 deletions
@@ -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 <[email protected]> + -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" |