wok annotate tcl/receipt @ rev 7714

Up: lmms to 0.4.9.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Dec 19 11:26:52 2010 +0000 (2010-12-19)
parents ef1d289e8344
children 43ec05a2b26b
rev   line source
erjo@507 1 # SliTaz package receipt.
erjo@507 2
erjo@507 3 PACKAGE="tcl"
slaxemulator@6422 4 VERSION="8.5.9"
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"
jozee@4973 13 TAGS="language programming"
erjo@507 14
erjo@507 15 # Rules to configure and make the package.
erjo@507 16 compile_rules()
erjo@507 17 {
erjo@507 18 # Redefine source path src
erjo@1870 19 src=${SOURCE}${VERSION}/unix
erjo@507 20
erjo@507 21 cd $src
erjo@507 22 ./configure --prefix=/usr \
erjo@507 23 --infodir=/usr/share/info \
erjo@507 24 --enable-shared \
erjo@507 25 --disable-symbols \
erjo@1870 26 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@1870 27 make && \
erjo@507 28 make DESTDIR=$PWD/_pkg install
erjo@507 29 }
erjo@507 30
erjo@507 31 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@507 32 genpkg_rules()
erjo@507 33 {
erjo@507 34
erjo@1870 35 _pkg=${SOURCE}${VERSION}/unix/_pkg
erjo@507 36 mkdir -p $fs/usr/lib
erjo@507 37 cp -a $_pkg/usr/lib/tcl8* $fs/usr/lib
erjo@507 38 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@507 39 cp -a $_pkg/usr/bin $fs/usr
erjo@1870 40 strip -s $fs/usr/bin/*
slaxemulator@5352 41 ln -sf tclsh8.5 $fs/usr/bin/tclsh
erjo@507 42 }
erjo@507 43
erjo@507 44 clean_wok(){
erjo@1870 45 test -d ${SOURCE}${VERSION} && rm -rf ${SOURCE}${VERSION}
erjo@507 46 }