mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
lzma compressed tarballs too for some testing, it does produce MUCH smaller
files
This commit is contained in:
parent
fb90b43432
commit
3a7e8c9f5f
17
maketgz
17
maketgz
@ -143,7 +143,16 @@ make -s dist VERSION=$version
|
|||||||
|
|
||||||
bzip2="curl-$version.tar.bz2"
|
bzip2="curl-$version.tar.bz2"
|
||||||
echo "Generating $bzip2"
|
echo "Generating $bzip2"
|
||||||
gzip -dc $targz | bzip2 - > $bzip2
|
gzip -dc $targz | bzip2 --best - > $bzip2
|
||||||
|
|
||||||
|
############################################################################
|
||||||
|
#
|
||||||
|
# Now make an lzma archive from the tar.gz original
|
||||||
|
#
|
||||||
|
|
||||||
|
lzma="curl-$version.tar.lzma"
|
||||||
|
echo "Generating $lzma"
|
||||||
|
gzip -dc $targz | lzma --best - > $lzma
|
||||||
|
|
||||||
############################################################################
|
############################################################################
|
||||||
#
|
#
|
||||||
@ -169,9 +178,7 @@ makezip
|
|||||||
echo "------------------"
|
echo "------------------"
|
||||||
echo "maketgz report:"
|
echo "maketgz report:"
|
||||||
echo ""
|
echo ""
|
||||||
ls -l $targz $bzip2 $zip
|
ls -l $targz $bzip2 $zip $lzma
|
||||||
|
|
||||||
md5sum $targz $bzip2 $zip
|
|
||||||
|
|
||||||
echo "Run this:"
|
echo "Run this:"
|
||||||
echo "gpg -b -a $targz && gpg -b -a $bzip2 && gpg -b -a $zip"
|
echo "gpg -b -a $targz && gpg -b -a $bzip2 && gpg -b -a $zip && gpg -b -a $lzma"
|
||||||
|
Loading…
Reference in New Issue
Block a user