wok-next annotate clisp/receipt @ rev 21724

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