aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Smith <jsmith@resonatingmedia.com>2015-07-18 12:51:18 -0300
committerJesse Smith <jsmith@resonatingmedia.com>2015-07-18 12:51:18 -0300
commit024f053a5beb652a25366a3ee914335670cb99b4 (patch)
tree59d459ce55c29ed3d3b6b2456b0a9f69da46de3e
parentClean up a few last things in lumina-config: (diff)
downloadlumina-024f053a5beb652a25366a3ee914335670cb99b4.tar.gz
lumina-024f053a5beb652a25366a3ee914335670cb99b4.tar.bz2
lumina-024f053a5beb652a25366a3ee914335670cb99b4.zip
Updated dependency and build instructors for Fedora.
Fedora (and CentOS and RHEL) use different package names, library prefixes and program names. Updated the DEPENDENCIES and README files to include the information needed to build and run Lumina on Fedora/RHEL/CentOS.
-rw-r--r--DEPENDENCIES43
-rw-r--r--README.md3
2 files changed, 45 insertions, 1 deletions
diff --git a/DEPENDENCIES b/DEPENDENCIES
index 31199420..7d0395cd 100644
--- a/DEPENDENCIES
+++ b/DEPENDENCIES
@@ -59,8 +59,10 @@ X.org and XCB extensions (possibly the XLib libraries above during the transitio
-=== Linux Requirements ===
+=== Linux Requirements (Debian/Ubuntu/Linux Mint) ===
These packages are required for building Lumina on Linux
+ distributions such as Debian, Ubuntu and Linux Mint.
+
build-essential (this supplies g++, though clang should work too)
qt5-default
qttools5-dev-tools
@@ -95,3 +97,42 @@ X.org and XCB extensions (possibly the XLib libraries above during the transitio
acpi (required for monitoring battery life)
numlockx (required for changing state of numlock at login)
pavucontrol (required for detatched audio mixer)
+
+
+
+=== Linux Requirements (Fedora/CentOS/Red Hat Enterprise Linux) ===
+ These packages are required for building and running Lumina on
+ Linux distributions in the Fedora/Red Hat/CentOS family.
+
+ gcc
+ gcc-c++
+ qt-devel
+ qt5-qttools-devel
+ qt-config
+ qt5-qttools
+ qt5-qtbase-gui
+ qt5-qtmultimedia-devel
+ qt5-qtsvg-devel
+ qt5-qtx11extras-devel
+ xcb-util-image
+ xcb-util-image-devel
+ xcb-util-wm-devel
+ libxcb-devel
+ xcb-util-devel
+ phonon-devel
+ phonon-qt5-devel
+ libXcomposite-devel
+ libXdamage-devel
+ libXrender-devel
+ qt5-qtdeclarative-devel
+ fluxbox
+ qt5-style-oxygen
+ plasma-oxygen
+ xscreensaver
+ xbacklight
+ alsa-utils
+ acpi
+ numlockx
+ pavucontrol
+ xterm
+
diff --git a/README.md b/README.md
index adef35ca..368ca4b3 100644
--- a/README.md
+++ b/README.md
@@ -44,9 +44,12 @@ How to build from source
- (Linux Note) If there is a customized OS template for your particular distro (not the general "Linux" template), you will need to change into the libLumina subdirectory and run the "make-linux-distro.sh" script to modify the project file for the Lumina library after running "qmake" in step 3. Be sure to change back to the base Lumina directory before moving on to step 4.
Example usage: "cd libLumina && ./make-linux-distro.sh MYDISTRO && cd .." (where there is a LuminaOS-MYDISTRO.cpp template available).
+- (Another Linux note) On Fedora (and related Red Hat and CentOS distributions) the
+system libraries are stored in a different directory than most other distributions use. For this reason, the "qmake" command must include the LIBPREFIX flag. On a 64-bit machine, the "qmake" command that should be used is "qmake LIBPREFIX=/lib64". The QTLIBDIR may need to be set too if lrelease is not in your usual path.
4) Run "make" to compile all the Lumina projects (can be done as user)
5) Run "make install" to install the Lumina desktop on your local system (requires admin/root privileges usually)
6-optional) Run "make clean" to clean up all the temporary build files in the Lumina source tree.
+
bgstack15