mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
613 B
Bash
22 lines
613 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Maintainer: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=gloox
|
|
pkgver=0.9.9.6
|
|
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=('2bf12138ab0d2101fc491494466c6b98')
|
|
|
|
build() {
|
|
cd $startdir/src/gloox-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|