summaryrefslogtreecommitdiff
path: root/extra/attica-qt5
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/attica-qt5
parent313040c7029fd0c36db63d7effbb974fd348389c (diff)
Sun May 18 03:42:25 UTC 2014
Diffstat (limited to 'extra/attica-qt5')
-rw-r--r--extra/attica-qt5/PKGBUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/extra/attica-qt5/PKGBUILD b/extra/attica-qt5/PKGBUILD
new file mode 100644
index 000000000..996debc4d
--- /dev/null
+++ b/extra/attica-qt5/PKGBUILD
@@ -0,0 +1,35 @@
+# $Id: PKGBUILD 212913 2014-05-16 22:31:10Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=attica-qt5
+pkgver=4.99.0
+pkgrel=1
+arch=('i686' 'x86_64')
+url='https://projects.kde.org/projects/kdesupport/attica'
+pkgdesc='A Qt5 library that implements the Open Collaboration Services API'
+license=('LGPL')
+depends=('qt5-base')
+makedepends=('extra-cmake-modules')
+groups=('kf5')
+source=("http://download.kde.org/unstable/frameworks/${pkgver}/attica-${pkgver}.tar.xz")
+md5sums=('1c6b71778ce0f2aea549e272bb14f5c3')
+
+prepare() {
+ mkdir -p build
+}
+
+build() {
+ cd build
+ cmake ../attica-${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
+}