#! /bin/sh
#
# Generates a source tarball for the themes package, including everything in the
# directory metacity/themes. uuscan can then be run to create a new version of
# the debian files..
#

version=$1

bdir="metacity-themes"

orig="../metacity-themes_$version.tar.gz"

tar zcf "$orig" --exclude "$bdir/debian" -C../ "$bdir"

echo "Created source tarball."
echo "now run uupdate $orig $version"
