diff options
Diffstat (limited to 'community/gloox/PKGBUILD')
-rw-r--r-- | community/gloox/PKGBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/community/gloox/PKGBUILD b/community/gloox/PKGBUILD index a8e8cff14..d2001f81e 100644 --- a/community/gloox/PKGBUILD +++ b/community/gloox/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 65524 2012-02-21 08:42:59Z spupykin $ +# $Id: PKGBUILD 93658 2013-07-08 11:17:28Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: William Rea <sillywilly@gmail.com> pkgname=gloox -pkgver=1.0 -pkgrel=3 +pkgver=1.0.2 +pkgrel=1 pkgdesc="C++ libraries for development of Jabber client/component/server" arch=(i686 x86_64) url="http://camaya.net/gloox" @@ -12,11 +12,15 @@ options=('!libtool') license=("GPL") depends=('libidn' 'gnutls') source=(http://camaya.net/download/gloox-$pkgver.tar.bz2) -md5sums=('f8eacf1c6476e0a309b453fd04f90e31') +md5sums=('4c446ee186406c3b3a24402418127faa') build() { cd $srcdir/gloox-$pkgver ./configure --prefix=/usr make +} + +package() { + cd $srcdir/gloox-$pkgver make DESTDIR=$pkgdir install } |