diff options
Diffstat (limited to 'extra/ggz-client-libs')
-rw-r--r-- | extra/ggz-client-libs/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/extra/ggz-client-libs/PKGBUILD b/extra/ggz-client-libs/PKGBUILD new file mode 100644 index 000000000..b750c7f79 --- /dev/null +++ b/extra/ggz-client-libs/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# Maintainer: Tobias Powalowski <tpowa@archlinux.org> + +pkgname=ggz-client-libs +pkgver=0.0.14.1 +pkgrel=1 +pkgdesc="GGZ client library, used by the GGZ Gaming Zone server (ggzd), the ggzcore library and other components" +arch=(i686 x86_64) +url="http://www.ggzgamingzone.org/" +license=('LGPL') +depends=('libggz>=0.0.14.1' 'expat>=2.0.1') +options=('!libtool') +source=(http://ftp.ggzgamingzone.org/pub/ggz/${pkgver}/${pkgname}-${pkgver}.tar.gz) +md5sums=('299eaa93721b1d867b5bf7dc6ac764b0') + +build() { + cd ${startdir}/src/${pkgname}-${pkgver} + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var || return 1 + make || return 1 + make DESTDIR=${startdir}/pkg install || return 1 +} |