summaryrefslogtreecommitdiff
path: root/community/gauche
diff options
context:
space:
mode:
Diffstat (limited to 'community/gauche')
-rw-r--r--community/gauche/PKGBUILD19
1 files changed, 9 insertions, 10 deletions
diff --git a/community/gauche/PKGBUILD b/community/gauche/PKGBUILD
index efc16877c..360b47db2 100644
--- a/community/gauche/PKGBUILD
+++ b/community/gauche/PKGBUILD
@@ -1,33 +1,32 @@
-# $Id: PKGBUILD 94289 2013-07-18 21:59:48Z arodseth $
+# $Id: PKGBUILD 116330 2014-07-25 12:11:18Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Motohiro Ueki <ueki.com@gmail.com>
# Contributor: nkoizu <nkoizu@gmail.com>
pkgname=gauche
-pkgver=0.9.3.3
+pkgver=0.9.4
pkgrel=1
url='http://practical-scheme.net/gauche/'
pkgdesc='R5RS Scheme implementation (provides gosh)'
depends=('gdbm' 'zlib' 'slib')
license=('BSD')
arch=('x86_64' 'i686')
-install="$pkgname.install"
+install=$pkgname.install
source=("http://downloads.sourceforge.net/$pkgname/Gauche-$pkgver.tgz")
-sha256sums=('3d8b70075faa0f7a24f8d112cc102ee3e1066680cdd19d324d59f33fab79caac')
+sha256sums=('7b18bcd70beaced1e004594be46c8cff95795318f6f5830dd2a8a700410fc149')
build() {
- cd "$srcdir/Gauche-$pkgver"
+ cd "Gauche-$pkgver"
- ./configure --prefix=/usr --enable-multibyte=utf-8 \
- --enable-threads=pthreads
- make -j1
+ ./configure --enable-multibyte=utf-8 --prefix=/usr
+ make
}
package() {
- cd "$srcdir/Gauche-$pkgver"
+ cd "Gauche-$pkgver"
- make -j1 DESTDIR="$pkgdir" install-pkg install-doc
+ make DESTDIR="$pkgdir" install-pkg install-doc
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
}