diff options
author | root <root@rshg054.dnsready.net> | 2011-09-06 23:14:33 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-09-06 23:14:33 +0000 |
commit | e2fb609d3af7a203357fd6ca983fef5f4dfba7eb (patch) | |
tree | 17d9357a559130a65cb1988b1e09cf8f1dd6bc55 /extra/sbcl | |
parent | e05f52e52ba779f4b0ebb5463dba9fc74f67f0b8 (diff) |
Tue Sep 6 23:14:33 UTC 2011
Diffstat (limited to 'extra/sbcl')
-rw-r--r-- | extra/sbcl/PKGBUILD | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/extra/sbcl/PKGBUILD b/extra/sbcl/PKGBUILD index 9c23c55fc..5829ea5b4 100644 --- a/extra/sbcl/PKGBUILD +++ b/extra/sbcl/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 135444 2011-08-13 20:11:24Z dreisner $ +# $Id: PKGBUILD 137076 2011-09-05 23:05:51Z dreisner $ # Contributor: John Proctor <jproctor@prium.net> # Contributor: Daniel White <daniel@whitehouse.id.au> # Maintainer: Juergen Hoetzel <juergen@archlinux.org> # Contributor: Leslie Polzer (skypher) pkgname=sbcl -pkgver=1.0.50 -pkgrel=2 +pkgver=1.0.51 +pkgrel=1 pkgdesc="Steel Bank Common Lisp" url="http://www.sbcl.org/" arch=('i686' 'x86_64') @@ -16,11 +16,9 @@ provides=('common-lisp' 'cl-asdf') makedepends=('sbcl' 'texinfo') install=sbcl.install source=("http://downloads.sourceforge.net/project/sbcl/sbcl/$pkgver/$pkgname-$pkgver-source.tar.bz2" - "arch-fixes.lisp" - "0001-Fix-version-string-parsing-for-Linux-3.0.patch") -md5sums=('74ce9b24516885d066ec4287cde52e8c' - '7ac0c1936547f4278198b8bf7725204d' - '7af58d1de2d788ad6a8d82c89279a75f') + "arch-fixes.lisp") +md5sums=('08032cc777f1236953cb901e24775457' + '7ac0c1936547f4278198b8bf7725204d') build() { cd "$srcdir/$pkgname-$pkgver" @@ -32,7 +30,7 @@ build() { export LINKFLAGS="$LDFLAGS" unset LDFLAGS - # Make a multi-threaded SBCL, disable LARGEFILE + # Make a multi-threaded SBCL, disable LARGEFILE cat >customize-target-features.lisp <<EOF (lambda (features) (flet ((enable (x) (pushnew x features)) @@ -41,9 +39,6 @@ build() { (disable :largefile))) EOF - # fix build against 3.0-ARCH - patch -Np1 < "$srcdir/0001-Fix-version-string-parsing-for-Linux-3.0.patch" - sh make.sh sbcl make -C doc/manual info } |