updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / ecl-unicode-git / PKGBUILD
blobb487b88f022867ba3b3bdfcd894f63ccedddedc7
1 # Contributor: Brit Butler <redline6561@gmail.com>
2 # Maintainer: Brit Butler <redline6561@gmail.com>
4 pkgname=ecl-unicode-git
5 pkgver=20091101
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' 'git')
13 provides=('common-lisp' 'cl-asdf' 'ecl')
14 conflicts=('ecl' 'ecl-unicode')
15 options=('!makeflags')
16 _gitname=ecl
17 _gitroot=git://ecls.git.sourceforge.net/gitroot/ecls/${_gitname}
18 source=()
19 md5sums=()
21 build() {
22   cd $srcdir
23   git clone ${_gitroot} ${_gitname}
24   cd $srcdir/${_gitname}
25   sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure || return 1
26   ./configure --build=$CHOST \
27               --prefix=/usr       \
28               --with-tcp          \
29               --with-clos-streams \
30               --with-serve-event \
31               --enable-shared \
32               --enable-unicode \
33               --enable-boehm=local \
34               --enable-threads \
35               --with-system-gmp \
36               --without-x \
37               --without-clx
39   make || return 1
40   make DESTDIR=$pkgdir install || return 1