updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / ecl-unicode / PKGBUILD
blob6a54e784a7c9cfbf4fddb4723ba6504f4047bdab
1 # Contributor: Brit Butler <redline6561@gmail.com>
2 # Maintainer: Brit Butler <redline6561@gmail.com>
4 pkgname=ecl-unicode
5 pkgver=11.1.1
6 pkgrel=1
7 pkgdesc="Embeddable Common Lisp"
8 arch=('i686' 'x86_64')
9 url="http://sourceforge.net/projects/ecls/"
10 license=('LGPL')
11 depends=('bash' 'gmp')
12 makedepends=('texinfo')
13 provides=('common-lisp' 'cl-asdf')
14 conflicts=('ecl')
15 options=('!makeflags')
16 source=(http://downloads.sourceforge.net/sourceforge/ecls/ecl-${pkgver}.tar.gz)
17 md5sums=('6963cfa00e1c6d4a2123fd62100b02e6')
18 sha1sums=('9c4c88683f6186f8152866033e6850e19eb8cc1f')
20 build() {
21   cd $srcdir/ecl-$pkgver
22   sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure || return 1
23   ./configure --build=$CHOST \
24               --prefix=/usr       \
25               --with-tcp          \
26               --with-clos-streams \
27               --with-serve-event \
28               --enable-shared \
29               --enable-unicode \
30               --enable-boehm=local \
31               --enable-threads \
32               --with-system-gmp \
33               --without-x \
34               --without-clx
36   make || return 1
37   make DESTDIR=$pkgdir install || return 1