# HG changeset patch # User Hans-G?nter Theisgen # Date 1648731102 -3600 # Node ID 52da7d813652effa97470f1dc823de55090aa809 # Parent d99c0862fdc32f286c373bb52b18632879e1fd1d updated makeself (2.4.0 -> 2.4.5) diff -r d99c0862fdc3 -r 52da7d813652 makeself/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/makeself/description.txt Thu Mar 31 13:51:42 2022 +0100 @@ -0,0 +1,10 @@ +makeself.sh is a small shell script that generates a self-extractable +compressed tar archive from a directory. +The resulting file appears as a shell script (many of those have a +.run suffix), and can be launched as is. +The archive will then uncompress itself to a temporary directory and +an optional arbitrary command will be executed (for example an +installation script). This is pretty similar to archives generated +with WinZip Self-Extractor in the Windows world. +Makeself archives also include checksums for integrity self-validation +(CRC and/or MD5/SHA256 checksums). diff -r d99c0862fdc3 -r 52da7d813652 makeself/receipt --- a/makeself/receipt Thu Mar 31 11:00:43 2022 +0100 +++ b/makeself/receipt Thu Mar 31 13:51:42 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="makeself" -VERSION="2.4.0" +VERSION="2.4.5" CATEGORY="development" SHORT_DESC="Utility to create self-extraction packages." MAINTAINER="slaxemulator@gmail.com" @@ -23,16 +23,15 @@ mkdir -p $DESTDIR/usr/bin mkdir -p $DESTDIR/usr/share/makeself - cp -a makeself.sh $DESTDIR/usr/bin/makeself - cp -a makeself-header.sh $DESTDIR/usr/share/makeself - sed -e 's|HEADER=`dirname $0`/makeself-header.sh|HEADER=/usr/share/makeself/makeself-header.sh|' -i $DESTDIR/usr/bin/makeself + cp -a makeself.sh $DESTDIR/usr/bin/makeself + cp -a makeself-header.sh $DESTDIR/usr/share/makeself + sed -i -e 's|HEADER=`dirname $0`/makeself-header.sh|HEADER=/usr/share/makeself/makeself-header.sh|' \ + $DESTDIR/usr/bin/makeself } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/share $fs/usr + cook_copy_folders bin + cook_copy_folders share }