diff options
author | root <root@rshg054.dnsready.net> | 2011-10-24 23:14:47 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-24 23:14:47 +0000 |
commit | 0d7bab226067a44a9f1b978924e8201a3fa60764 (patch) | |
tree | 7c17a659e61f8c790e75160fcecc9a9f63df2500 /community/guichan | |
parent | c0bc46632845dfc241d3290d8d3193287eaeb02e (diff) |
Mon Oct 24 23:14:47 UTC 2011
Diffstat (limited to 'community/guichan')
-rw-r--r-- | community/guichan/PKGBUILD | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/community/guichan/PKGBUILD b/community/guichan/PKGBUILD index eee1aa7d5..787656283 100644 --- a/community/guichan/PKGBUILD +++ b/community/guichan/PKGBUILD @@ -1,10 +1,11 @@ -# $Id: PKGBUILD 4400 2009-10-22 15:03:46Z ibiru $ +# $Id: PKGBUILD 57204 2011-10-23 23:29:35Z andrea $ # Maintainer: Mateusz Herych <heniekk@gmail.com> -# Contributor: Bjørn Lindeijer <bjorn@lindeijer.nl> +# Contributor: Bjørn Lindeijer <bjorn@lindeijer.nl> + pkgname=guichan pkgver=0.8.2 -pkgrel=1 -pkgdesc="Guichan is a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL." +pkgrel=2 +pkgdesc="A portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL." arch=('i686' 'x86_64') url="http://guichan.sourceforge.net/" license=('BSD') @@ -18,9 +19,13 @@ md5sums=('af535d7f387e774e3197cef8023ea105') build() { cd $srcdir/$pkgname-$pkgver CXXFLAGS="-g" ./configure --prefix=/usr - make || return 1 + make +} + +package() { + cd $srcdir/$pkgname-$pkgver make prefix=$pkgdir/usr install # Install the license, as required for BSD - install -m644 -D COPYING $startdir/pkg/usr/share/licenses/$pkgname/COPYING + install -m644 -D COPYING $startdir/pkg/usr/share/licenses/$pkgname/LICENSE } |