diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-15 11:21:50 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-06-15 11:21:50 -0300 |
commit | 3b1f136e5530b99c12c9b170b16af39e398e1719 (patch) | |
tree | 68f1515c47b2bfc69d67cb523ad955dff4538d6a /community/chicken/PKGBUILD | |
parent | 5182b3ad7127576cdf11e1b729c9ef53383dbf69 (diff) | |
parent | ba3afb3907fc927bd08713613d4a30a9479c715c (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
extra/indent/PKGBUILD
Diffstat (limited to 'community/chicken/PKGBUILD')
-rw-r--r-- | community/chicken/PKGBUILD | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/community/chicken/PKGBUILD b/community/chicken/PKGBUILD index e877f7b8a..842cf4fe4 100644 --- a/community/chicken/PKGBUILD +++ b/community/chicken/PKGBUILD @@ -2,15 +2,14 @@ # Contributor: <david@pako.st> pkgname=chicken -pkgver=4.6.0 -pkgrel=2 +pkgver=4.7.0 +pkgrel=1 pkgdesc='A compiler for R5RS scheme, featuring handy extensions' arch=('i686' 'x86_64' '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=('538a93e786e550ad848a040bcd902184') build() { cd ${pkgname}-${pkgver} @@ -25,12 +24,12 @@ build() { package() { 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 - - # should be a symbolic link not a copy otherwise ldconfig will cry - rm -f ${pkgdir}/usr/lib/libchicken.so - ln -s /usr/lib/libchicken.so.5 ${pkgdir}/usr/lib/libchicken.so } +md5sums=('9389388fdf04c3c64de29633aae12539') |