summaryrefslogtreecommitdiff
path: root/extra/ecl
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-02-22 17:06:20 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-02-22 17:06:20 +0100
commit47d70348352503e92ba694a6a683f629eaa18215 (patch)
tree7fb6f5ec75596b795dee52cfa35e3ef00a047cfb /extra/ecl
parentc0bcbcf4015ba2388cb0f0bd418e5242f9613b43 (diff)
parent1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/hostapd/PKGBUILD community/discid/PKGBUILD community/dumb/PKGBUILD community/dynamite/PKGBUILD community/echat/PKGBUILD community/fbdump/PKGBUILD community/fldiff/PKGBUILD community/flightgear/PKGBUILD community/fonteditfs/PKGBUILD community/freehdl/PKGBUILD community/unclutter/PKGBUILD community/unpaper/PKGBUILD community/wmii/PKGBUILD community/xkeycaps/PKGBUILD community/xl2tpd/PKGBUILD community/xmmsctrl/PKGBUILD extra/gnutls/PKGBUILD extra/inkscape/PKGBUILD extra/ntp/PKGBUILD extra/transmission/PKGBUILD multilib/lib32-libpng/PKGBUILD testing/libreoffice/PKGBUILD
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 273331df9..35c6189ac 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' 'mips64el')
@@ -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
}