# $Id$
# Contributor: John Proctor <jproctor@prium.net>
# Maintainer: juergen <juergen@archlinux.org>

# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
#  - use system libffi (included version is old and breaks on v5)
#  - specify libffi include path in CPPFLAGS
#  - use gc with AArch64

pkgname=ecl
pkgver=15.3.7
pkgrel=1
pkgdesc="Embeddable Common Lisp"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/ecls/"
license=('LGPL')
depends=('bash' 'gmp' 'libffi')
depends_aarch64=('gc')
makedepends=('texinfo')
provides=('common-lisp' 'cl-asdf')
options=('!makeflags')
source=(http://downloads.sourceforge.net/project/ecls/ecls/15.3/ecl-${pkgver}.tgz)
md5sums=('39f4fb924c88e47ce31e6d57ac2a6de8')

prepare() {
  cd $srcdir/$pkgname-$pkgver

  sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure 
}

build() {
  cd $srcdir/$pkgname-$pkgver

  [[ $CARCH != "aarch64" && CONFIG="--enable-boehm=included"

  CPPFLAGS+=" -I/usr/lib/libffi-3.2.1/include"
  ./configure \
    --build=$CHOST \
    --prefix=/usr \
    --with-tcp \
    --with-clos-streams \
    --enable-shared \
    --with-system-gmp \
    --without-x \
    --enable-threads \
    --without-clx \
    --with-dffi=system $CONFIG

  make
}

package() {
  make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install
}