wok view clisp/receipt @ rev 8042

Fix: xfce4-settings needs exo to compile
author Antoine Bodin <gokhlayeh@slitaz.org>
date Thu Jan 20 16:46:44 2011 +0100 (2011-01-20)
parents
children 0381358b9532
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 DEPENDS="readline ncurses"
9 BUILD_DEPENDS="readline-dev libsigsegv libffcall glibc-locale"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://clisp.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
19 # Increase stack size to build.
20 ulimit -s 16384
22 ./configure \
23 --prefix=/usr \
24 --with-libsigsegv \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 --cbc build &&
29 # Be careful - unusual build rules!
30 cd build &&
31 make DESTDIR=$src/_pkg 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 $_pkg/usr/bin $fs/usr
39 cp -a $_pkg/usr/lib $fs/usr
40 cp -a $_pkg/usr/share $fs/usr
41 # remove stuff
42 rm -rf $fs/usr/share/man
43 }