blob: fa1d1f7469ea75924b068022aed07a69a62c511f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# $Id: PKGBUILD 77589 2010-04-16 11:15:06Z juergen $
# Contributor: John Proctor <jproctor@prium.net>
# Maintainer: juergen <juergen@archlinux.org>
pkgname=ecl
pkgver=10.4.1
pkgrel=1
pkgdesc="Embeddable Common Lisp"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/ecls/"
license=('LGPL')
depends=('bash' 'gmp')
makedepends=('texinfo')
provides=('common-lisp' 'cl-asdf')
options=('!makeflags')
source=(http://downloads.sourceforge.net/project/ecls/ecls/10.4/ecl-10.4.1.tar.gz)
md5sums=('be53f5e55a3f07c7cfb5fb5cd9a2a3f0')
build() {
cd $srcdir/$pkgname-$pkgver
sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure || return 1
./configure --build=$CHOST \
--prefix=/usr \
--with-tcp \
--with-clos-streams \
--enable-shared \
--enable-boehm=local \
--with-system-gmp \
--without-x \
--without-clx \
--disable-threads
make || return 1
make DESTDIR=$pkgdir install || return 1
}
|