# # GLOBAL PACKAGE SETTINGS # # These settings will be sourced directly from the PKGBUILDS # Architecture _arch="x86_64" # KDE settings _kdever="15.04.0" _mirror="http://download.kde.org/stable/applications/14.12.3/src" _oldkdever="4.14.3" _oldkdemirror="http://download.kde.org/stable/${_oldkdever}/src" _branchupdate=no _workspace_ver="4.11.17" _libsver="4.14.6" # Qt settings _qtver="4.8.6" _qtpkg="qt" # Package name prefix # FIXME: Can we get rid of this? _pkgprefix="kde" function cmake_kf5() { cmake -DCMAKE_BUILD_TYPE=${PBuildType} \ -DCMAKE_INSTALL_PREFIX=${PInstallPrefix} \ -DLIB_INSTALL_DIR=lib \ -DSYSCONF_INSTALL_DIR=/etc \ -DLIBEXEC_INSTALL_DIR=lib \ -DBUILD_TESTING=OFF \ -DKDE_INSTALL_USE_QT_SYS_PATHS=ON "$@" } # Install prefix _installprefix="/usr" # Build type, one of the following: # Release: Compile with no debugging information, optimization enabled # Debug: Minimal optimization, with debugging information # RelWithDebInfo: Normal optimization, with debugging information # MinSizeRel: No debugging information, with optimization for smallest size _build_type="RelWithDebInfo" # Working directory for this repository _build_work="/chakra/desktop-testing/" # Automatic installation of packages # # To make this work without entering your password, add the # following entry to /etc/sudoers: # # $your_username all=nopasswd: /usr/bin/pacman # # Notice: You _must_ enable this if you want to build kde4 # on a system without any prior installation. # _build_autoinstall=1 # Automatic installation of dependencies # # To make this work without entering your password, add the # following entry to /etc/sudoers: # # $your_username all=nopasswd: /usr/bin/pacman # # Notice: You _must_ enable this if you want to build kde4 # on a system without any prior installation. # _build_autodepends=1 # Behavior when a package fails to build # # Set to "1" if you want to stop the script(s) when # a package fails to build. # _build_stop=1 # If you think you have configured everything, # set this to 1 to remove the warning. # _build_configured=1