diff options
author | root <root@rshg047.dnsready.net> | 2011-05-14 22:37:30 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-05-14 22:37:30 +0000 |
commit | e69c538fc7af5a9861c7688dd15913082d978180 (patch) | |
tree | f193cf26628a71f1c474227fa6c429713558f0a2 /extra/ggz-client-libs/PKGBUILD | |
parent | 2c4629f613c001fd29740d0f4c0e497c771a2182 (diff) |
Sat May 14 22:37:30 UTC 2011
Diffstat (limited to 'extra/ggz-client-libs/PKGBUILD')
-rw-r--r-- | extra/ggz-client-libs/PKGBUILD | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/extra/ggz-client-libs/PKGBUILD b/extra/ggz-client-libs/PKGBUILD index b750c7f79..5c173cc62 100644 --- a/extra/ggz-client-libs/PKGBUILD +++ b/extra/ggz-client-libs/PKGBUILD @@ -1,21 +1,27 @@ -# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# $Id: PKGBUILD 123871 2011-05-14 00:20:19Z andrea $ # Maintainer: Tobias Powalowski <tpowa@archlinux.org> pkgname=ggz-client-libs pkgver=0.0.14.1 -pkgrel=1 +pkgrel=2 pkgdesc="GGZ client library, used by the GGZ Gaming Zone server (ggzd), the ggzcore library and other components" -arch=(i686 x86_64) +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) +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 + cd "${srcdir}"/${pkgname}-${pkgver} + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install } |