Codebase list libxstream-java / debian/1.3.1-5 debian / orig-tar.sh
debian/1.3.1-5

Tree @debian/1.3.1-5 (Download .tar.gz)

orig-tar.sh @debian/1.3.1-5raw · history · blame

#!/bin/sh -e

# called by uscan with '--upstream-version' <version> <file>
DIR=xstream-$2
TAR=../libxstream-java_$2.orig.tar.gz

# clean up the upstream tarball
unzip $3
GZIP=--best tar -c -z -f $TAR --exclude '*.jar' $DIR
rm -rf $DIR $3

# move to directory 'tarballs'
if [ -r .svn/deb-layout ]; then
    . .svn/deb-layout
    mv $TAR $origDir
    echo "moved $TAR to $origDir"
fi