blob: 673a5afd2cea468d789a52e0a5302ffbd28e695d (
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
36
37
38
39
|
# $Id: PKGBUILD 164666 2012-08-02 09:27:21Z juergen $
# Contributor: John Proctor <jproctor@prium.net>
# Maintainer: juergen <juergen@archlinux.org>
pkgname=ecl
pkgver=12.7.1
pkgrel=1
pkgdesc="Embeddable Common Lisp"
arch=('i686' 'x86_64' 'mips64el')
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/12.7/ecl-12.7.1.tar.gz)
md5sums=('ce8dd2136fbbc74e44a1c41b32db1f3c')
build() {
cd $srcdir/$pkgname-$pkgver
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=included \
--with-system-gmp \
--without-x \
--enable-threads \
--without-clx
make
}
package() {
make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install
}
|