# $Id: Pkgfile,v 1.1.1.1 2005/11/04 13:24:46 aon Exp $ # Description: An ANSI Common LISP # URL: http://clisp.cons.org # Maintainer: Aaron Marks # Packager: Aaron Marks # Original: Antti Nykänen # Depends on: x11, libpcre, readline, libsigsegv name=clisp version=2.38 release=2 source=(ftp://ftp.gnu.org/pub/gnu/${name}/release/${version}/${name}-${version}.tar.bz2) build () { unset CFLAGS cd ${name}-${version} ./configure --prefix=/usr --ignore-absence-of-libsigsegv cd src ./makemake --prefix=/usr \ --with-dynamic-ffi \ --with-module=pcre \ --with-module=regexp \ --with-module=clx/new-clx > Makefile make config.lisp make # for some reason some test halt the check... # make check make DESTDIR=${PKG} install rm -rf $PKG/usr/lib/clisp/base ln -s /usr/lib/clisp/full ${PKG}/usr/lib/clisp/base mv ${PKG}/usr/share/man ${PKG}/usr/man rm -rf ${PKG}/usr/share }