diff options
Diffstat (limited to 'community/synce-libsynce')
-rw-r--r-- | community/synce-libsynce/PKGBUILD | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/community/synce-libsynce/PKGBUILD b/community/synce-libsynce/PKGBUILD index 7e9aba5de..d0fb0be38 100644 --- a/community/synce-libsynce/PKGBUILD +++ b/community/synce-libsynce/PKGBUILD @@ -1,21 +1,26 @@ -# $Id: PKGBUILD 43060 2011-03-23 21:47:47Z spupykin $ +# $Id: PKGBUILD 46029 2011-05-02 10:37:25Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Zhukov Pavel <gelios@gmail.com> pkgname=synce-libsynce pkgver=0.15.1 -pkgrel=1 +pkgrel=2 pkgdesc="provide a means of communication with a Windows CE device - libraries" arch=('i686' 'x86_64') url="http://synce.sourceforge.net/" license=('GPL') -depends=('glibc' 'hal') +depends=('dbus-glib') +options=('!libtool') source=(http://downloads.sourceforge.net/sourceforge/synce/libsynce-$pkgver.tar.gz) md5sums=('eaddc88c5f0027e89c6f0fffec34def2') build() { cd $srcdir/libsynce-$pkgver - ./configure --prefix=/usr + ./configure --prefix=/usr --enable-odccm-support --enable-udev-support --disable-hal-support make +} + +package() { + cd $srcdir/libsynce-$pkgver make DESTDIR=$pkgdir install } |