From 3d67c8c34ac89acee83f9847ef79dfd78f8559d7 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Fri, 12 Dec 2014 06:23:28 +0000 Subject: [PATCH] ggz: these had nothing to do in platform --- ggz-client-libs/PKGBUILD | 31 +++++++++++++++++++++++++++++++ libggz/PKGBUILD | 30 ++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 ggz-client-libs/PKGBUILD create mode 100644 libggz/PKGBUILD diff --git a/ggz-client-libs/PKGBUILD b/ggz-client-libs/PKGBUILD new file mode 100644 index 000000000..3e1c47434 --- /dev/null +++ b/ggz-client-libs/PKGBUILD @@ -0,0 +1,31 @@ +# +# Platform Packages for Chakra, part of chakra-project.org +# +# Maintainer: Adrian Chaves Fernandez (Gallaecio) +# Contributor: Tobias Powalowski + +pkgname=ggz-client-libs +pkgver=0.0.14.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) +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 ${srcdir}/${pkgname}-${pkgver} + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} diff --git a/libggz/PKGBUILD b/libggz/PKGBUILD new file mode 100644 index 000000000..17e1f111f --- /dev/null +++ b/libggz/PKGBUILD @@ -0,0 +1,30 @@ +# +# Platform Packages for Chakra, part of chakra-project.org +# +# Maintainer: Adrian Chaves Fernandez (Gallaecio) +# Contributor: Jan de Groot +# Contributor: Tom Newsom + +pkgname=libggz +pkgver=0.0.14.1 +pkgrel=2 +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 ${srcdir}/${pkgname}-${pkgver} + ./configure \ + --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +}