wok-current diff tcllib/receipt @ rev 15674
Up: wbar2 (2.3.4)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Thu Dec 19 01:29:10 2013 +0100 (2013-12-19) |
parents | ba61bc5af9e1 |
children | f8e9bf4989d3 |
line diff
1.1 --- a/tcllib/receipt Fri Dec 24 13:41:00 2010 +0000 1.2 +++ b/tcllib/receipt Thu Dec 19 01:29:10 2013 +0100 1.3 @@ -5,12 +5,14 @@ 1.4 CATEGORY="development" 1.5 SHORT_DESC="Tcl-only library of standard routines for Tcl." 1.6 MAINTAINER="paul@slitaz.org" 1.7 -DEPENDS="tcl" 1.8 -BUILD_DEPENDS="tcl" 1.9 +LICENSE="BSD" 1.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.11 WEB_SITE="http://sourceforge.net/projects/tcllib/" 1.12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.13 1.14 +DEPENDS="tcl" 1.15 +BUILD_DEPENDS="tcl" 1.16 + 1.17 # Rules to configure and make the package. 1.18 compile_rules() 1.19 { 1.20 @@ -20,14 +22,13 @@ 1.21 --infodir=/usr/share/info \ 1.22 --mandir=/usr/share/man \ 1.23 $CONFIGURE_ARGS && 1.24 - make DESTDIR=$PWD/_pkg install 1.25 + make DESTDIR=$DESTDIR install 1.26 } 1.27 1.28 # Rules to gen a SliTaz package suitable for Tazpkg. 1.29 genpkg_rules() 1.30 { 1.31 mkdir -p $fs/usr/lib 1.32 - cp -a $_pkg/usr/bin $fs/usr 1.33 - cp -a $_pkg/usr/lib/* $fs/usr/lib 1.34 + cp -a $install/usr/bin $fs/usr 1.35 + cp -a $install/usr/lib/* $fs/usr/lib 1.36 } 1.37 -