summaryrefslogtreecommitdiff
path: root/community/chicken/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-02-01 00:06:30 -0800
committerroot <root@rshg054.dnsready.net>2013-02-01 00:06:30 -0800
commitedd3a17c9ed0cc3fa7fb62b4ad4178e064d46cda (patch)
treefb0363ba1ecdbf443cff57d7927ca13e8bd4e0e5 /community/chicken/PKGBUILD
parenta949895a0243a490d30fe355655c839fe217c580 (diff)
Fri Feb 1 00:06:30 PST 2013
Diffstat (limited to 'community/chicken/PKGBUILD')
-rw-r--r--community/chicken/PKGBUILD31
1 files changed, 12 insertions, 19 deletions
diff --git a/community/chicken/PKGBUILD b/community/chicken/PKGBUILD
index a035498ff..1cb98a34a 100644
--- a/community/chicken/PKGBUILD
+++ b/community/chicken/PKGBUILD
@@ -1,38 +1,31 @@
-# $Id: PKGBUILD 81004 2012-12-09 14:30:25Z arodseth $
-# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
+# $Id: PKGBUILD 83421 2013-01-31 20:35:27Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Vesa Kaihlavirta <vegai@iki.fi>
# Contributor: <david@pako.st>
# Contributor: Alexander Rødseth <rodseth@gmail.com>
pkgname=chicken
-pkgver=4.8.0
+pkgver=4.8.0.1
pkgrel=1
pkgdesc='Compiler for R5RS scheme, featuring handy extensions'
arch=('x86_64' 'i686')
-url='http://www.call-with-current-continuation.org/'
+url='http://call-cc.org/'
license=('BSD')
depends=('gcc')
-source=("http://code.call-cc.org/releases/$pkgver/$pkgname-$pkgver.tar.gz")
-sha256sums=('5b2e8c6b4b13b502d8c684b394d80ed490d2884c03789353d895ab85d19979ab')
+source=("http://code.call-cc.org/releases/${pkgver/.1}/$pkgname-$pkgver.tar.gz")
+sha256sums=('a60efa9d2a621ecb9e03b41ebdd03ae27ecb32c1292671fd969506c9baf88d0c')
build() {
- cd $pkgname-$pkgver
+ cd "$pkgname-$pkgver"
- # parallel builds are not supported..
- export MAKEFLAGS="${MAKEFLAGS/-j?/}"
-
- # some yummy make options there. check out README in the tarball.
- make PLATFORM=linux PREFIX=/usr
+ make -j1 PLATFORM=linux PREFIX=/usr
}
package() {
- cd $pkgname-$pkgver
+ cd "$pkgname-$pkgver"
- # parallel builds are not supported..
- export MAKEFLAGS="${MAKEFLAGS/-j?/}"
- make PLATFORM=linux PREFIX=/usr DESTDIR=$pkgdir install
-
- install -D -m644 LICENSE \
- $pkgdir/usr/share/licenses/$pkgname/LICENSE
+ make -j1 PLATFORM=linux PREFIX=/usr DESTDIR="$pkgdir" install
+ install -D -m644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
# vim:set ts=2 sw=2 et: