summaryrefslogtreecommitdiff
path: root/extra/ecl
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-21 23:15:10 +0000
committerroot <root@rshg054.dnsready.net>2012-02-21 23:15:10 +0000
commit1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (patch)
tree5e44ad19f2672ee92283377c9fe6eab3c8a815d7 /extra/ecl
parent11484c032f8c236b2044e715a9a3b28e33f65598 (diff)
Tue Feb 21 23:15:10 UTC 2012
Diffstat (limited to 'extra/ecl')
-rw-r--r--extra/ecl/PKGBUILD19
1 files changed, 11 insertions, 8 deletions
diff --git a/extra/ecl/PKGBUILD b/extra/ecl/PKGBUILD
index 8ab9c23ef..f7281d31f 100644
--- a/extra/ecl/PKGBUILD
+++ b/extra/ecl/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 127540 2011-06-16 08:47:04Z juergen $
+# $Id: PKGBUILD 150709 2012-02-20 22:31:08Z juergen $
# Contributor: John Proctor <jproctor@prium.net>
# Maintainer: juergen <juergen@archlinux.org>
pkgname=ecl
-pkgver=11.1.1
+pkgver=12.2.1
pkgrel=1
pkgdesc="Embeddable Common Lisp"
arch=('i686' 'x86_64')
@@ -13,23 +13,26 @@ depends=('bash' 'gmp')
makedepends=('texinfo')
provides=('common-lisp' 'cl-asdf')
options=('!makeflags')
-source=(http://downloads.sourceforge.net/project/ecls/ecls/11.1/ecl-11.1.1.tar.gz)
-md5sums=('6963cfa00e1c6d4a2123fd62100b02e6')
+source=(http://downloads.sourceforge.net/project/ecls/ecls/12.2/ecl-12.2.1.tgz)
+md5sums=('1a54b733e7cd07af2b1cb6d7f8b716d2')
build() {
cd $srcdir/$pkgname-$pkgver
- sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure || return 1
+ sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure
./configure --build=$CHOST \
--prefix=/usr \
--with-tcp \
--with-clos-streams \
--enable-shared \
- --enable-boehm=local \
+ --enable-boehm=included \
--with-system-gmp \
--without-x \
--without-clx \
--disable-threads
- make || return 1
- make DESTDIR=$pkgdir install || return 1
+ make
}
+
+package() {
+ make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install
+} \ No newline at end of file