wok annotate clisp/receipt @ rev 10640

icedtea6-jdk: add small comment
author Christophe Lincoln <pankso@slitaz.org>
date Fri May 27 00:58:14 2011 +0200 (2011-05-27)
parents 0381358b9532
children 3dc5b5917da0
rev   line source
paul@7804 1 # SliTaz package receipt.
paul@7804 2
paul@7804 3 PACKAGE="clisp"
paul@7804 4 VERSION="2.49"
paul@7804 5 CATEGORY="development"
paul@7804 6 SHORT_DESC="GNU ANSI common lisp implementation."
paul@7804 7 MAINTAINER="paul@slitaz.org"
paul@7804 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@7804 9 WEB_SITE="http://clisp.sourceforge.net/"
paul@7804 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
paul@7804 11
slaxemulator@10295 12 DEPENDS="readline ncurses"
slaxemulator@10295 13 BUILD_DEPENDS="readline-dev libsigsegv libffcall glibc-locale"
slaxemulator@10295 14
paul@7804 15 # Rules to configure and make the package.
paul@7804 16 compile_rules()
paul@7804 17 {
paul@7804 18 cd $src
paul@7804 19
gokhlayeh@9180 20 # CFLAGS/CXXFLAGS/MAKEFLAGS screw the build process.
gokhlayeh@9180 21 unset CFLAGS CXXFLAGS MAKEFLAGS
paul@7804 22
paul@7804 23 ./configure \
paul@7804 24 --with-libsigsegv \
slaxemulator@10295 25 --cbc build \
slaxemulator@10295 26 $CONFIGURE_ARGS &&
paul@7804 27
paul@7804 28 # Be careful - unusual build rules!
paul@7804 29 cd build &&
gokhlayeh@9180 30 make DESTDIR=$DESTDIR install
paul@7804 31 }
paul@7804 32
paul@7804 33 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@7804 34 genpkg_rules()
paul@7804 35 {
paul@7804 36 mkdir -p $fs/usr/share
paul@7804 37 cp -a $_pkg/usr/bin $fs/usr
paul@7804 38 cp -a $_pkg/usr/lib $fs/usr
paul@7804 39 cp -a $_pkg/usr/share $fs/usr
paul@7804 40 # remove stuff
paul@7804 41 rm -rf $fs/usr/share/man
paul@7804 42 }
paul@7804 43