summaryrefslogtreecommitdiff
path: root/extra/libkolab
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-12-09 01:45:54 -0800
committerroot <root@rshg054.dnsready.net>2012-12-09 01:45:54 -0800
commit9e5276831865e251c8d74a830da4908eab65cbb3 (patch)
tree0f2e1cb68a0d2affed733ba9432471b096801e57 /extra/libkolab
parentb8c6ff8db00ce5eec5e6f20a90e8f8ec993ef3d5 (diff)
Sun Dec 9 01:45:28 PST 2012
Diffstat (limited to 'extra/libkolab')
-rw-r--r--extra/libkolab/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/libkolab/PKGBUILD b/extra/libkolab/PKGBUILD
new file mode 100644
index 000000000..af08f281a
--- /dev/null
+++ b/extra/libkolab/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 173021 2012-12-08 17:41:09Z andrea $
+# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+
+pkgname=libkolab
+pkgver=0.4.0
+pkgrel=1
+pkgdesc="Advanced Kolab Object Handling Library"
+url='http://git.kolab.org/libkolab/'
+arch=('i686' 'x86_64')
+license=('GPL')
+depends=('libkolabxml' 'kdepimlibs')
+makedepends=('cmake' 'automoc4' 'boost')
+source=("http://mirror.kolabsys.com/pub/releases/${pkgname}-${pkgver}.tar.gz"{,.gpg})
+md5sums=('3ba23bc11c3fb1c852e5b7b9788fed6d'
+ '56052090b7fb89813c3bae1cb5b104c5')
+
+build() {
+ mkdir build
+ cd build
+ cmake ../${pkgname}-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="${pkgdir}" install
+}