diff options
author | root <root@rshg054.dnsready.net> | 2012-12-09 01:45:54 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-12-09 01:45:54 -0800 |
commit | 9e5276831865e251c8d74a830da4908eab65cbb3 (patch) | |
tree | 0f2e1cb68a0d2affed733ba9432471b096801e57 /extra/libkolabxml | |
parent | b8c6ff8db00ce5eec5e6f20a90e8f8ec993ef3d5 (diff) |
Sun Dec 9 01:45:28 PST 2012
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 +} |