From 9d0aa6f36cd13eeedc8c03a938b3cc257cf31d99 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Thu, 2 Jan 2020 12:51:43 -0300 Subject: [PATCH] update readme to remove cmake references --- README.md | 41 ----------------------------------------- 1 file changed, 41 deletions(-) diff --git a/README.md b/README.md index 55a0d45..7f6b08c 100644 --- a/README.md +++ b/README.md @@ -34,47 +34,6 @@ A graphical package manager for pacman - Vala: 0.38 - AutoVala: 1.2.0 (optional to regenerate CMake and Meson files) -## Using CMake with GNU Make - -``` -mkdir build -cd build -cmake .. \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=/usr/lib \ - -DCMAKE_INSTALL_SYSCONFDIR=/etc -make -make install -``` -### Extra build flags - -- -DDISABLE_AUR=ON (to disable AUR in Pamac) -- -DKDE_TRAY=ON (to build kde tray icon instead of gtk tray icon) -- -DENABLE_UPDATE_ICON=ON (to install the update desktop entry) -- -DICON_UPDATE=OFF (to disable updating the icon cache) -- -DENABLE_HAMBURGER=ON (to build with the classic hamburger menu) - -## Using CMake with Ninja - -``` -mkdir build -cd build -cmake .. \ - -GNinja - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=/usr/lib \ - -DCMAKE_INSTALL_SYSCONFDIR=/etc -ninja -ninja install -``` -### Extra build flags - -- -DDISABLE_AUR=ON (to disable AUR in Pamac) -- -DKDE_TRAY=ON (to build kde tray icon instead of gtk tray icon) -- -DENABLE_UPDATE_ICON=ON (to install the update desktop entry) -- -DICON_UPDATE=OFF (to disable updating the icon cache) -- -DENABLE_HAMBURGER=ON (to build with the classic hamburger menu) - ## Using Meson with Ninja ```