wok-current rev 25348
updated tcllib (1.20 -> 1.21)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Jul 25 13:13:47 2022 +0100 (2022-07-25) |
parents | aa7275c5f402 |
children | d4f09ab2b9bb |
files | tcllib/description.txt tcllib/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/tcllib/description.txt Mon Jul 25 13:13:47 2022 +0100 1.3 @@ -0,0 +1,7 @@ 1.4 +Tcllib is a collection of utility modules for Tcl. 1.5 +These modules provide a wide variety of functionality, 1.6 +from implementations of standard data structures to 1.7 +implementations of common networking protocols. 1.8 +The intent is to collect commonly used function into a 1.9 +single library, which users can rely on to be available 1.10 +and stable.
2.1 --- a/tcllib/receipt Mon Jul 25 09:37:49 2022 +0100 2.2 +++ b/tcllib/receipt Mon Jul 25 13:13:47 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="tcllib" 2.7 -VERSION="1.20" 2.8 +VERSION="1.21" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Tcl-only library of standard routines for Tcl." 2.11 MAINTAINER="paul@slitaz.org" 2.12 @@ -30,14 +30,12 @@ 2.13 ./configure \ 2.14 --prefix=/usr \ 2.15 $CONFIGURE_ARGS && 2.16 - make DESTDIR=$DESTDIR install 2.17 + make install DESTDIR=$DESTDIR 2.18 } 2.19 2.20 # Rules to gen a SliTaz package suitable for Tazpkg. 2.21 genpkg_rules() 2.22 { 2.23 - mkdir -p $fs/usr/lib 2.24 - 2.25 - cp -a $install/usr/bin $fs/usr 2.26 - cp -a $install/usr/lib/* $fs/usr/lib 2.27 + cook_copy_folders bin 2.28 + cook_copy_folders lib 2.29 }