wok rev 24877

updated makeself (2.4.0 -> 2.4.5)
author Hans-G?nter Theisgen
date Thu Mar 31 13:51:42 2022 +0100 (2022-03-31)
parents d99c0862fdc3
children 860cdb4f3471
files makeself/description.txt makeself/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/makeself/description.txt	Thu Mar 31 13:51:42 2022 +0100
     1.3 @@ -0,0 +1,10 @@
     1.4 +makeself.sh is a small shell script that generates a self-extractable
     1.5 +compressed tar archive from a directory.
     1.6 +The resulting file appears as a shell script (many of those have a
     1.7 +.run suffix), and can be launched as is.
     1.8 +The archive will then uncompress itself to a temporary directory and
     1.9 +an optional arbitrary command will be executed (for example an
    1.10 +installation script). This is pretty similar to archives generated
    1.11 +with WinZip Self-Extractor in the Windows world.
    1.12 +Makeself archives also include checksums for integrity self-validation
    1.13 +(CRC and/or MD5/SHA256 checksums).
     2.1 --- a/makeself/receipt	Thu Mar 31 11:00:43 2022 +0100
     2.2 +++ b/makeself/receipt	Thu Mar 31 13:51:42 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="makeself"
     2.7 -VERSION="2.4.0"
     2.8 +VERSION="2.4.5"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Utility to create self-extraction packages."
    2.11  MAINTAINER="slaxemulator@gmail.com"
    2.12 @@ -23,16 +23,15 @@
    2.13  	mkdir -p $DESTDIR/usr/bin
    2.14  	mkdir -p $DESTDIR/usr/share/makeself
    2.15  
    2.16 -	cp -a makeself.sh $DESTDIR/usr/bin/makeself
    2.17 -	cp -a makeself-header.sh $DESTDIR/usr/share/makeself
    2.18 -	sed -e 's|HEADER=`dirname $0`/makeself-header.sh|HEADER=/usr/share/makeself/makeself-header.sh|' -i $DESTDIR/usr/bin/makeself
    2.19 +	cp -a makeself.sh		$DESTDIR/usr/bin/makeself
    2.20 +	cp -a makeself-header.sh	$DESTDIR/usr/share/makeself
    2.21 +	sed -i -e 's|HEADER=`dirname $0`/makeself-header.sh|HEADER=/usr/share/makeself/makeself-header.sh|' \
    2.22 +					$DESTDIR/usr/bin/makeself
    2.23  }
    2.24  
    2.25  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.26  genpkg_rules()
    2.27  {
    2.28 -	mkdir -p $fs/usr
    2.29 -
    2.30 -	cp -a $install/usr/bin		$fs/usr
    2.31 -	cp -a $install/usr/share	$fs/usr
    2.32 +	cook_copy_folders	bin
    2.33 +	cook_copy_folders	share
    2.34  }