wok view clisp/receipt @ rev 4814

Up: claws-mail-vcalendar(2.0.7)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Jan 19 01:08:11 2010 +0100 (2010-01-19)
parents
children 39011a13b555
line source
1 # SliTaz package receipt.
3 PACKAGE="clisp"
4 VERSION="2.48"
5 CATEGORY="development"
6 SHORT_DESC="GNU ANSI common lisp implementation."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="readline"
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 }