# $Id: PKGBUILD 214150 2014-06-04 09:06:26Z andrea $ # Maintainer: Andrea Scarpino pkgname=knotifications pkgver=4.100.0 pkgrel=1 pkgdesc='KNotifications' arch=('i686' 'x86_64') url='https://projects.kde.org/projects/frameworks/knotifications' license=('LGPL') depends=('phonon-qt5' 'libdbusmenu-qt5' 'kservice' 'kiconthemes') makedepends=('extra-cmake-modules' 'qt5-tools') groups=('kf5') source=("http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz") md5sums=('fef8940c81cfd1906aae29200853ea2e') prepare() { mkdir -p build } build() { cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_INSTALL_DIR=lib \ -DECM_MKSPECS_INSTALL_DIR=/usr/share/qt/mkspecs/modules \ -DBUILD_TESTING=OFF make } package() { cd build make DESTDIR="${pkgdir}" install }