diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libggz |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libggz')
-rw-r--r-- | extra/libggz/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/libggz/PKGBUILD b/extra/libggz/PKGBUILD new file mode 100644 index 000000000..99ee52cdf --- /dev/null +++ b/extra/libggz/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=libggz +pkgver=0.0.14.1 +pkgrel=1 +pkgdesc="GGZ base 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=('libgcrypt') +options=('!libtool') +source=(http://ftp.ggzgamingzone.org/pub/ggz/${pkgver}/${pkgname}-${pkgver}.tar.gz) +md5sums=('603739504648833779aa13b0327a1c3d') + +build() { + cd ${startdir}/src/${pkgname}-${pkgver} + ./configure --prefix=/usr || return 1 + make || return 1 + make DESTDIR=${startdir}/pkg install || return 1 +} |