wok view clisp/receipt @ rev 9742

Fix: claws-mail BUILD_DEPENDS )libassuan, also use xorg-dev for all Xorg dev pkgs) and clean receipt
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 10 02:32:37 2011 +0200 (2011-05-10)
parents 0c300d0368f1
children 36a3008ee2e1
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="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 # CFLAGS/CXXFLAGS/MAKEFLAGS screw the build process.
20 unset CFLAGS CXXFLAGS MAKEFLAGS
22 ./configure \
23 --with-libsigsegv \
24 --cbc build &&
26 # Be careful - unusual build rules!
27 cd build &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/lib $fs/usr
37 cp -a $_pkg/usr/share $fs/usr
38 # remove stuff
39 rm -rf $fs/usr/share/man
40 }