summaryrefslogtreecommitdiff
path: root/kde-unstable/libqzeitgeist/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'kde-unstable/libqzeitgeist/PKGBUILD')
-rw-r--r--kde-unstable/libqzeitgeist/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/kde-unstable/libqzeitgeist/PKGBUILD b/kde-unstable/libqzeitgeist/PKGBUILD
new file mode 100644
index 000000000..057ee2628
--- /dev/null
+++ b/kde-unstable/libqzeitgeist/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 124473 2011-05-22 13:09:39Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=libqzeitgeist
+pkgver=0.1git20110522
+pkgrel=1
+pkgdesc="A Qt interface to the Zeitgeist event tracking system"
+url="https://projects.kde.org/projects/kdesupport/libqzeitgeist"
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('qt')
+makedepends=('cmake')
+source=("${pkgname}-${pkgver}.tar.bz2"::'http://quickgit.kde.org/?p=libqzeitgeist.git&a=snapshot&h=289c66f430dfb842afd36191a0ef82a26111c403&fmt=tbz2')
+md5sums=('ba7d2c347e82b0aa6ab55f3136fb9468')
+
+build() {
+ cd "${srcdir}"
+ mkdir build
+ cd build
+ cmake ../${pkgname} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}"/build
+ make DESTDIR="${pkgdir}" install
+}