diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2012-12-10 18:30:22 +0100 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2012-12-10 18:30:22 +0100 |
commit | 422ddbe135468a35d04170922ea3d25d18246aca (patch) | |
tree | 39b4d1c3999a4d3a24331974af195f58ede88e29 /community/chicken | |
parent | 9c9dcb7ee95f321e5a4243792500f059231722cb (diff) | |
parent | 4aef0a374e20e36cf2bf6e779d93789d9a5791ae (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts:
community/chicken/PKGBUILD
community/sqliteman/PKGBUILD
extra/exo/PKGBUILD
extra/pyqt/PKGBUILD
extra/sip/PKGBUILD
extra/tumbler/PKGBUILD
extra/xorg-server/PKGBUILD
Diffstat (limited to 'community/chicken')
-rw-r--r-- | community/chicken/PKGBUILD | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/community/chicken/PKGBUILD b/community/chicken/PKGBUILD index 7dbb345a3..30e232d7b 100644 --- a/community/chicken/PKGBUILD +++ b/community/chicken/PKGBUILD @@ -1,20 +1,21 @@ -# $Id: PKGBUILD 67462 2012-03-11 21:18:54Z lcarlier $ +# $Id: PKGBUILD 81004 2012-12-09 14:30:25Z arodseth $ # Maintainer: Vesa Kaihlavirta <vegai@iki.fi> # Contributor: <david@pako.st> +# Contributor: Alexander Rødseth <rodseth@gmail.com> pkgname=chicken -pkgver=4.7.0 -pkgrel=2 -pkgdesc='A compiler for R5RS scheme, featuring handy extensions' -arch=('i686' 'x86_64' 'mips64el') +pkgver=4.8.0 +pkgrel=1 +pkgdesc='Compiler for R5RS scheme, featuring handy extensions' +arch=('x86_64' 'i686' 'mips64el') url='http://www.call-with-current-continuation.org/' license=('BSD') depends=('gcc') -source=("http://code.call-cc.org/releases/${pkgver}/${pkgname}-${pkgver}.tar.gz") -md5sums=('9389388fdf04c3c64de29633aae12539') +source=("http://code.call-cc.org/releases/$pkgver/$pkgname-$pkgver.tar.gz") +sha256sums=('5b2e8c6b4b13b502d8c684b394d80ed490d2884c03789353d895ab85d19979ab') build() { - cd ${pkgname}-${pkgver} + cd $pkgname-$pkgver # parallel builds are not supported.. export MAKEFLAGS="${MAKEFLAGS/-j?/}" @@ -24,13 +25,14 @@ build() { } package() { - cd ${pkgname}-${pkgver} - + cd $pkgname-$pkgver # parallel builds are not supported.. export MAKEFLAGS="${MAKEFLAGS/-j?/}" - make PLATFORM=linux PREFIX=/usr DESTDIR=${pkgdir} install + make PLATFORM=linux PREFIX=/usr DESTDIR=$pkgdir install install -D -m644 LICENSE \ - ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE + $pkgdir/usr/share/licenses/$pkgname/LICENSE } + +# vim:set ts=2 sw=2 et: |