From 2da96d38f284fbf481b2031682afbc9dbb28b8ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 13 Feb 2013 22:45:58 +0100 Subject: [PATCH] create_tarball: Add option to select compression method (cherry picked from commit 6a19cd9bb6d3463f31299644cc687c0bc6d7c672) --- create_tarball | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/create_tarball b/create_tarball index 6d9d72c..d4c7e4f 100755 --- a/create_tarball +++ b/create_tarball @@ -12,6 +12,13 @@ SUFFIX=${SUFFIX:-"true"} # The default is the parent directory (..). TARBALL_DIR=${TARBALL_DIR:-".."} +# Set compression method +case ${COMPRESS:="xz"} in + "gzip") TAR_SUFFIX="gz";; + "bzip2") TAR_SUFFIX="bz2";; + "xz") TAR_SUFFIX="xz";; +esac + # Check git-dir if [[ ! -e .git ]] || [[ -z "`git rev-parse --git-dir 2>/dev/null`" ]]; then @@ -80,12 +87,12 @@ fi # Create tarball echo "Package name: $package" -if [ ! -e $TARBALL_DIR/$package.tar.xz ]; then +if [ ! -e $TARBALL_DIR/$package.tar.$TAR_SUFFIX ]; then echo "Creating tarball in $TARBALL_DIR." trap "rm $TARBALL_DIR/tar-$$; exit 1" INT tar c --owner=root --group=users --exclude .git --exclude .gitmodules --transform "s|^\.|$package|" ./ | \ - xz -9 >$TARBALL_DIR/tar-$$ && \ - mv $TARBALL_DIR/tar-$$ $TARBALL_DIR/$package.tar.xz || \ + $COMPRESS -9 >$TARBALL_DIR/tar-$$ && \ + mv $TARBALL_DIR/tar-$$ $TARBALL_DIR/$package.tar.$TAR_SUFFIX || \ rm $TARBALL_DIR/tar-$$ else echo "Unchanged tarball in $TARBALL_DIR."