# HG changeset patch # User Hans-G?nter Theisgen # Date 1658751227 -3600 # Node ID eb11103ba26e3f0dad6e6e754b849075f50f752f # Parent aa7275c5f402861d8c111b5f4c5412c77548ee1b updated tcllib (1.20 -> 1.21) diff -r aa7275c5f402 -r eb11103ba26e tcllib/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tcllib/description.txt Mon Jul 25 13:13:47 2022 +0100 @@ -0,0 +1,7 @@ +Tcllib is a collection of utility modules for Tcl. +These modules provide a wide variety of functionality, +from implementations of standard data structures to +implementations of common networking protocols. +The intent is to collect commonly used function into a +single library, which users can rely on to be available +and stable. diff -r aa7275c5f402 -r eb11103ba26e tcllib/receipt --- a/tcllib/receipt Mon Jul 25 09:37:49 2022 +0100 +++ b/tcllib/receipt Mon Jul 25 13:13:47 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="tcllib" -VERSION="1.20" +VERSION="1.21" CATEGORY="development" SHORT_DESC="Tcl-only library of standard routines for Tcl." MAINTAINER="paul@slitaz.org" @@ -30,14 +30,12 @@ ./configure \ --prefix=/usr \ $CONFIGURE_ARGS && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/* $fs/usr/lib + cook_copy_folders bin + cook_copy_folders lib }