wok-next view clisp/receipt @ rev 21715

Up cookutils (1146)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:53:22 2020 +0000 (2020-07-28)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="clisp"
4 VERSION="2.49"
5 CATEGORY="development"
6 SHORT_DESC="GNU ANSI Common Lisp implementation"
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://clisp.sourceforge.io/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="https://downloads.sourceforge.net/sourceforge/$PACKAGE/$TARBALL"
13 TARBALL_SHA1="7e8d585ef8d0d6349ffe581d1ac08681e6e670d4"
15 BUILD_DEPENDS="gettext-dev libffcall-dev readline-dev libsigsegv-dev"
17 COPY="@std @dev"
18 DEPENDS="libffcall libsigsegv ncurses readline"
20 compile_rules() {
21 ulimit -s 16384
23 ./configure \
24 --with-ffcall \
25 --with-readline \
26 --with-dynamic-ffi \
27 --without-dynamic-modules \
28 . &&
29 fix libtool &&
30 make -j1 &&
31 make -j1 DESTDIR=$install install
32 }