diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-02-01 13:57:47 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-02-01 13:57:47 +0100 |
commit | 5283e1af147b6bd8c58dbaeae3363e02d6af7389 (patch) | |
tree | 5bfff242cb5bd12dd1889dca79b38e0e778470fc /community/chicken | |
parent | f258e07b2f61c3a78b658a257fb882bc141778f4 (diff) | |
parent | edd3a17c9ed0cc3fa7fb62b4ad4178e064d46cda (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/chicken/PKGBUILD
extra/k3b/PKGBUILD
extra/samba/PKGBUILD
Diffstat (limited to 'community/chicken')
-rw-r--r-- | community/chicken/PKGBUILD | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/community/chicken/PKGBUILD b/community/chicken/PKGBUILD index 30e232d7b..9a6c0204e 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' 'mips64el') -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: |