From edd3a17c9ed0cc3fa7fb62b4ad4178e064d46cda Mon Sep 17 00:00:00 2001 From: root Date: Fri, 1 Feb 2013 00:06:30 -0800 Subject: Fri Feb 1 00:06:30 PST 2013 --- community/chicken/PKGBUILD | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) (limited to 'community/chicken/PKGBUILD') 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 +# $Id: PKGBUILD 83421 2013-01-31 20:35:27Z arodseth $ +# Maintainer: Alexander Rødseth +# Contributor: Vesa Kaihlavirta # Contributor: # Contributor: Alexander Rødseth 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: -- cgit v1.2.3-54-g00ecf