diff options
Diffstat (limited to 'community/gloox/PKGBUILD')
-rw-r--r-- | community/gloox/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/gloox/PKGBUILD b/community/gloox/PKGBUILD new file mode 100644 index 000000000..045076658 --- /dev/null +++ b/community/gloox/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 7908 2010-01-12 10:36:09Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: William Rea <sillywilly@gmail.com> + +pkgname=gloox +pkgver=1.0 +pkgrel=1 +pkgdesc="C++ libraries for development of Jabber client/component/server" +arch=(i686 x86_64) +url="http://camaya.net/gloox" +options=('!libtool') +license=("GPL") +depends=('libidn' 'gnutls') +source=(http://camaya.net/download/gloox-$pkgver.tar.bz2) +md5sums=('f8eacf1c6476e0a309b453fd04f90e31') + +build() { + cd $startdir/src/gloox-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$startdir/pkg install +} |