opt/clisp/Pkgfile
2014-11-10 23:25:50 +11:00

32 lines
641 B
Plaintext

# Description: GNU CLisp is an ANSI Common Lisp Implementation.
# URL: http://clisp.cons.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Danny Rawlins, crux at romster dot me
# Depends on: libsigsegv
name=clisp
version=2.49
release=1
source=(http://ftp.gnu.org/pub/gnu/clisp/latest/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--mandir=/usr/man
cd src
./makemake \
--with-dynamic-ffi \
--without-dynamic-modules \
--prefix=/usr \
--mandir=/usr/man
make -j1
make -j1 DESTDIR=$PKG install
rm -r $PKG/usr/share/{doc,locale}
}