summaryrefslogtreecommitdiff
path: root/community/guichan
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
commit65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch)
treefbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /community/guichan
parentd53c44f055929b18d7d1b25f8367ee5836c435fc (diff)
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'community/guichan')
-rw-r--r--community/guichan/PKGBUILD12
1 files changed, 6 insertions, 6 deletions
diff --git a/community/guichan/PKGBUILD b/community/guichan/PKGBUILD
index b5625a55b..e6eae876c 100644
--- a/community/guichan/PKGBUILD
+++ b/community/guichan/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 99805 2013-10-30 23:49:55Z allan $
+# $Id: PKGBUILD 103044 2013-12-25 17:53:57Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Mateusz Herych <heniekk@gmail.com>
# Contributor: Bjørn Lindeijer <bjorn@lindeijer.nl>
pkgname=guichan
pkgver=0.8.2
-pkgrel=3
+pkgrel=4
pkgdesc="A portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL."
arch=('i686' 'x86_64')
url="http://guichan.sourceforge.net/"
@@ -16,17 +16,17 @@ source=(http://guichan.googlecode.com/files/$pkgname-$pkgver.tar.gz)
sha256sums=('eedf206eae5201eaae027b133226d0793ab9a287bfd74c5f82c7681e3684eeab')
build() {
- cd ${srcdir}/$pkgname-$pkgver
+ cd "${srcdir}"/$pkgname-$pkgver
CXXFLAGS="-g" ./configure --prefix=/usr
make
}
package() {
- cd ${srcdir}/$pkgname-$pkgver
+ cd "${srcdir}"/$pkgname-$pkgver
- make prefix=${pkgdir}/usr install
+ make prefix="${pkgdir}"/usr install
# Install the license, as required for BSD
- install -m644 -D COPYING ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
+ install -m644 -D COPYING "${pkgdir}"/usr/share/licenses/$pkgname/LICENSE
}