desktop/plasma.conf
2014-12-01 05:27:04 +00:00

25 lines
625 B
Plaintext

# the install prefix
PInstallPrefix="/usr"
# download location
PServer="http://download.kde.org/stable/plasma/"
# Frameworks version
PVersion="5.1.1"
PSubVersion="5.1.1"
PQtVersion="5.3.2"
# Build type; can be one of Debug,Release and RelWithDebInfo
PBuildType="RelWithDebInfo"
function cmake_kf5() {
cmake -DCMAKE_BUILD_TYPE=${PBuildType} \
-DCMAKE_INSTALL_PREFIX=${PInstallPrefix} \
-DLIB_INSTALL_DIR=lib \
-DSYSCONF_INSTALL_DIR=/etc \
-DLIBEXEC_INSTALL_DIR=lib \
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON "$@"
}
function getSum() {
awk "\$2 ~ /${1}-/ {print \$1}" ../plasma.sums ;
}