Date: Saturday, May 17, 2014 @ 00:13:54 Author: andrea Revision: 212906
Let's try to package KDE Frameworks 5 Added: frameworkintegration/ frameworkintegration/repos/ frameworkintegration/trunk/ frameworkintegration/trunk/PKGBUILD ----------+ PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) Added: frameworkintegration/trunk/PKGBUILD =================================================================== --- frameworkintegration/trunk/PKGBUILD (rev 0) +++ frameworkintegration/trunk/PKGBUILD 2014-05-16 22:13:54 UTC (rev 212906) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=frameworkintegration +pkgver=4.99.0 +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=('kio' 'ttf-oxygen') +makedepends=('extra-cmake-modules') +groups=('kf5') +source=("http://download.kde.org/unstable/frameworks/${pkgver}/${pkgname}-${pkgver}.tar.xz") +md5sums=('7d10b581c89019857373508454c8c3ab') + +prepare() { + mkdir -p build +} + +build() { + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -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
