1 # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
2 # Contributor: Hauke Wesselmann <hauke@h-dawg.de>
3 # Contributor: Giorgio Lando <patroclo7@gmail.com>
8 pkgdesc="An implementation of the syncml protocol."
10 url="http://libsyncml.opensync.org/"
12 depends=('gnutls' 'libsoup' 'libwbxml' 'openobex')
14 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
16 md5sums=('b8ce1f222cccc12acdcd6807d65c1aea')
21 #building in source directory not allowed
22 if [ -d ${srcdir}/build ]; then
25 mkdir ${srcdir}/build && cd ${srcdir}/build
28 cmake ../$pkgname-$pkgver -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release
30 make DESTDIR=${pkgdir} install || return 1