desktop/plasma.conf

25 lines
625 B
Plaintext
Raw Normal View History

2014-06-22 18:56:52 +08:00
# the install prefix
PInstallPrefix="/usr"
# download location
2014-07-11 02:23:53 +08:00
PServer="http://download.kde.org/stable/plasma/"
2014-06-22 18:56:52 +08:00
# Frameworks version
2014-12-01 13:27:04 +08:00
PVersion="5.1.1"
PSubVersion="5.1.1"
PQtVersion="5.3.2"
2014-10-23 03:29:25 +08:00
2014-06-22 18:56:52 +08:00
# Build type; can be one of Debug,Release and RelWithDebInfo
2014-12-01 13:27:04 +08:00
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 "$@"
}
2014-06-22 18:56:52 +08:00
function getSum() {
awk "\$2 ~ /${1}-/ {print \$1}" ../plasma.sums ;
2014-06-22 18:56:52 +08:00
}