diff options
Diffstat (limited to 'extra/libkolabxml')
-rw-r--r-- | extra/libkolabxml/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/extra/libkolabxml/PKGBUILD b/extra/libkolabxml/PKGBUILD new file mode 100644 index 000000000..70ff5ff3c --- /dev/null +++ b/extra/libkolabxml/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 173016 2012-12-08 17:30:40Z andrea $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=libkolabxml +pkgver=0.8.1 +pkgrel=1 +pkgdesc="Kolab XML Format Schema Definitions Library" +url='http://git.kolab.org/libkolabxml/' +arch=('i686' 'x86_64') +license=('GPL') +depends=('xerces-c' 'boost-libs') +makedepends=('cmake' 'boost' 'xsd') +source=("http://mirror.kolabsys.com/pub/releases/${pkgname}-${pkgver}.tar.gz"{,.gpg}) +md5sums=('a02541b35153334c69ee1845dfe464c6' + 'f5e9bc4a21a5bf06baec084435812cc4') + +build() { + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd build + make DESTDIR="${pkgdir}" install +} |