opt/clisp/Pkgfile

29 lines
550 B
Plaintext
Raw Normal View History

2012-10-30 22:40:28 +01:00
# Description: GNU CLisp is an ANSI Common Lisp Implementation.
2014-07-08 19:10:21 +02:00
# URL: http://clisp.cons.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
2018-02-21 10:26:50 +01:00
# Depends on: libsigsegv readline
2012-10-30 22:40:28 +01:00
name=clisp
version=2.49
release=1
2018-02-21 10:26:50 +01:00
source=(https://ftp.gnu.org/pub/gnu/clisp/latest/$name-$version.tar.bz2)
2012-10-30 22:40:28 +01:00
build() {
2014-07-08 19:10:21 +02:00
cd $name-$version
2012-10-30 22:40:28 +01:00
2014-07-08 19:10:21 +02:00
./configure \
2018-02-21 10:26:50 +01:00
--prefix=/usr
2012-10-30 22:40:28 +01:00
2014-07-08 19:10:21 +02:00
cd src
2012-10-30 22:40:28 +01:00
2014-07-08 19:10:21 +02:00
./makemake \
--with-dynamic-ffi \
--without-dynamic-modules \
2018-02-21 10:26:50 +01:00
--prefix=/usr
2012-10-30 22:40:28 +01:00
2014-07-08 19:10:21 +02:00
make -j1
make -j1 DESTDIR=$PKG install
2012-10-30 22:40:28 +01:00
2014-07-08 19:10:21 +02:00
rm -r $PKG/usr/share/{doc,locale}
2012-10-30 22:40:28 +01:00
}