# $Id: PKGBUILD 214163 2014-06-04 09:08:45Z andrea $ # Maintainer: Andrea Scarpino pkgname=plasma-framework pkgver=4.100.0 pkgrel=1 pkgdesc='Plasma library and runtime components based upon KF5 and Qt5' arch=('i686' 'x86_64') url='https://projects.kde.org/projects/playground/libs/plasma-framework' license=('LGPL') depends=('qt5-quickcontrols' 'kdeclarative' 'kactivities-frameworks') makedepends=('extra-cmake-modules' 'qt5-tools' 'kdoctools') groups=('kf5') source=("http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz") md5sums=('a49ff1fb805f15115e4365bae6bbb45d') prepare() { mkdir -p build } build() { cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_INSTALL_DIR=lib \ -DQML_INSTALL_DIR=lib/qt/qml \ -DQT_PLUGIN_INSTALL_DIR=lib/qt/plugins \ -DBUILD_TESTING=OFF make } package() { cd build make DESTDIR="${pkgdir}" install }