summaryrefslogtreecommitdiff
path: root/extra/plasma-framework
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-05-18 03:52:05 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-05-18 03:52:05 +0000
commit423ae5a5a1cd103d57b8cb52279533b3011f42d8 (patch)
tree0816754beb383cc3d3b45b501150f48ea42b1377 /extra/plasma-framework
parent313040c7029fd0c36db63d7effbb974fd348389c (diff)
Sun May 18 03:42:25 UTC 2014
Diffstat (limited to 'extra/plasma-framework')
-rw-r--r--extra/plasma-framework/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/extra/plasma-framework/PKGBUILD b/extra/plasma-framework/PKGBUILD
new file mode 100644
index 000000000..6cde1479f
--- /dev/null
+++ b/extra/plasma-framework/PKGBUILD
@@ -0,0 +1,34 @@
+# $Id: PKGBUILD 213026 2014-05-17 12:53:28Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=plasma-framework
+pkgver=4.99.0
+pkgrel=2
+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=('bb8077f5858643939bc002428cfcc338')
+
+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
+}