Date: Monday, May 12, 2014 @ 07:50:36 Author: andrea Revision: 212294
Let's try to package KDE Frameworks 5 Added: knotifications/ knotifications/repos/ knotifications/trunk/ knotifications/trunk/PKGBUILD ----------+ PKGBUILD | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) Added: knotifications/trunk/PKGBUILD =================================================================== --- knotifications/trunk/PKGBUILD (rev 0) +++ knotifications/trunk/PKGBUILD 2014-05-12 05:50:36 UTC (rev 212294) @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=knotifications +pkgver=4.99.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=('2199596880bdf507c1cce81c9e0c24e3') + +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 +} Property changes on: knotifications/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
