wok view clisp/receipt @ rev 20514

Add boulderdash & digger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 31 20:39:40 2018 +0100 (2018-10-31)
parents 6498d0dac540
children 291369229046
line source
1 # SliTaz package receipt.
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://clisp.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="readline ncurses"
14 BUILD_DEPENDS="readline-dev libsigsegv libffcall"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 # Temporarily (?) disabling one failed test
20 patch -p1 -i $stuff/streams.tst.patch
22 # CFLAGS/CXXFLAGS/MAKEFLAGS screw the build process.
23 unset CFLAGS CXXFLAGS MAKEFLAGS
25 ./configure \
26 --with-libsigsegv \
27 --cbc build &&
29 # Be careful - unusual build rules!
30 cd build &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/share
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/lib $fs/usr
40 cp -a $install/usr/share $fs/usr
41 # remove stuff
42 rm -rf $fs/usr/share/man
43 }