Date: Saturday, December 21, 2013 @ 16:26:05 Author: andrea Revision: 202392
KF5 Added: frameworkintegration/ frameworkintegration/repos/ frameworkintegration/trunk/ frameworkintegration/trunk/PKGBUILD ----------+ PKGBUILD | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) Added: frameworkintegration/trunk/PKGBUILD =================================================================== --- frameworkintegration/trunk/PKGBUILD (rev 0) +++ frameworkintegration/trunk/PKGBUILD 2013-12-21 15:26:05 UTC (rev 202392) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=frameworkintegration +pkgver=r6.2a0cf6e +pkgrel=1 +pkgdesc='Framework providing components to allow applications to integrate with a KDE Workspace' +arch=('i686' 'x86_64') +url='https://projects.kde.org/projects/frameworks/frameworkintegration' +license=('LGPL') +depends=('attica-qt5' 'kio' 'kbookmarks') +makedepends=('extra-cmake-modules' 'git') +groups=('kf5') +source=('git://anongit.kde.org/frameworkintegration.git') +md5sums=('SKIP') + +pkgver() { + cd frameworkintegration + printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" +} + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../frameworkintegration \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/opt/kf5 \ + -DLIB_INSTALL_DIR=lib \ + -DBUILD_TESTING=OFF + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} Property changes on: frameworkintegration/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
