wok annotate tcl/receipt @ rev 1920

Asterisk: add setup-rules for postgresql
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 22 12:16:29 2008 +0000 (2008-12-22)
parents a075ff895254
children 866fa2493b1b
rev   line source
erjo@507 1 # SliTaz package receipt.
erjo@507 2
erjo@507 3 PACKAGE="tcl"
erjo@1870 4 VERSION="8.5.5"
erjo@507 5 CATEGORY="development"
erjo@507 6 SHORT_DESC="The Tool Command Language"
erjo@784 7 MAINTAINER="erjo@slitaz.org"
erjo@507 8 DEPENDS=""
erjo@1870 9 SOURCE="tcl"
erjo@1870 10 TARBALL="${SOURCE}${VERSION}-src.tar.gz"
erjo@507 11 WEB_SITE="http://tcl.sourceforge.net/"
erjo@507 12 WGET_URL="http://surfnet.dl.sourceforge.net/sourceforge/tcl/$TARBALL"
erjo@507 13
erjo@507 14 # Rules to configure and make the package.
erjo@507 15 compile_rules()
erjo@507 16 {
erjo@507 17 # Redefine source path src
erjo@1870 18 src=${SOURCE}${VERSION}/unix
erjo@507 19
erjo@507 20 cd $src
erjo@507 21 ./configure --prefix=/usr \
erjo@507 22 --infodir=/usr/share/info \
erjo@507 23 --enable-shared \
erjo@507 24 --disable-symbols \
erjo@1870 25 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@1870 26 make && \
erjo@507 27 make DESTDIR=$PWD/_pkg install
erjo@507 28 }
erjo@507 29
erjo@507 30 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@507 31 genpkg_rules()
erjo@507 32 {
erjo@507 33
erjo@1870 34 _pkg=${SOURCE}${VERSION}/unix/_pkg
erjo@507 35 mkdir -p $fs/usr/lib
erjo@507 36 cp -a $_pkg/usr/lib/tcl8* $fs/usr/lib
erjo@507 37 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@507 38 cp -a $_pkg/usr/bin $fs/usr
erjo@1870 39 strip -s $fs/usr/bin/*
erjo@507 40 }
erjo@507 41
erjo@507 42 clean_wok(){
erjo@1870 43 test -d ${SOURCE}${VERSION} && rm -rf ${SOURCE}${VERSION}
erjo@507 44 }