wok-current annotate clisp/receipt @ rev 4592
update get-wifi-firmaware; rt2860,rt2870 fw now in kernel; rt73,rt61 WGET_URL temporarily fixed using Arch sources
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Fri Dec 11 12:21:27 2009 +0000 (2009-12-11) |
parents | |
children | 39011a13b555 |
rev | line source |
---|---|
paul@4580 | 1 # SliTaz package receipt. |
paul@4580 | 2 |
paul@4580 | 3 PACKAGE="clisp" |
paul@4580 | 4 VERSION="2.48" |
paul@4580 | 5 CATEGORY="development" |
paul@4580 | 6 SHORT_DESC="GNU ANSI common lisp implementation." |
paul@4580 | 7 MAINTAINER="paul@slitaz.org" |
paul@4580 | 8 DEPENDS="readline" |
paul@4580 | 9 BUILD_DEPENDS="readline-dev libsigsegv libffcall glibc-locale" |
paul@4580 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@4580 | 11 WEB_SITE="http://clisp.sourceforge.net/" |
paul@4580 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
paul@4580 | 13 |
paul@4580 | 14 # Rules to configure and make the package. |
paul@4580 | 15 compile_rules() |
paul@4580 | 16 { |
paul@4580 | 17 cd $src |
paul@4580 | 18 |
paul@4580 | 19 # Increase stack size to build. |
paul@4580 | 20 ulimit -s 16384 |
paul@4580 | 21 |
paul@4580 | 22 ./configure \ |
paul@4580 | 23 --prefix=/usr \ |
paul@4580 | 24 --with-libsigsegv \ |
paul@4580 | 25 --infodir=/usr/share/info \ |
paul@4580 | 26 --mandir=/usr/share/man \ |
paul@4580 | 27 --cbc build |
paul@4580 | 28 |
paul@4580 | 29 # Be careful - unusual build rules! |
paul@4580 | 30 cd build |
paul@4580 | 31 make DESTDIR=$src/_pkg install |
paul@4580 | 32 } |
paul@4580 | 33 |
paul@4580 | 34 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@4580 | 35 genpkg_rules() |
paul@4580 | 36 { |
paul@4580 | 37 mkdir -p $fs/usr/share |
paul@4580 | 38 cp -a $_pkg/usr/bin $fs/usr |
paul@4580 | 39 cp -a $_pkg/usr/lib $fs/usr |
paul@4580 | 40 cp -a $_pkg/usr/share $fs/usr |
paul@4580 | 41 # remove stuff |
paul@4580 | 42 rm -rf $fs/usr/share/man |
paul@4580 | 43 } |
paul@4580 | 44 |