# $Id: PKGBUILD,v 1.2 2007/06/01 09:30:25 jgc Exp $ # Maintainer: dorphell pkgname=clisp pkgver=2.44.1 pkgrel=1 pkgdesc="ANSI Common Lisp interpreter, compiler and debugger" arch=('i686' 'x86_64') license=('GPL') url="http://clisp.cons.org/" depends=('readline' 'libsigsegv') source=(http://ftp.gnu.org/pub/gnu/clisp/release/$pkgver/$pkgname-${pkgver}.tar.gz) md5sums=('75d933e82c611fd4e89fcb1072dce397') build() { cd ${startdir}/src/${pkgname}-${pkgver} unset CFLAGS CXXFLAGS ./configure --prefix=/usr --prefix=/usr --with-readline --with-gettext --with-dynamic-ffi src cd src ./makemake --prefix=/usr --prefix=/usr --with-readline --with-gettext --with-dynamic-ffi > Makefile make -j1 || return 1 sed -i 's,http://www.lisp.org/HyperSpec/,http://www.lispworks.com/reference/HyperSpec/,g' config.lisp make -j1 || return 1 make DESTDIR=${startdir}/pkg install || return 1 }