summaryrefslogtreecommitdiff
path: root/debian/orig-tar.sh
diff options
context:
space:
mode:
Diffstat (limited to 'debian/orig-tar.sh')
-rwxr-xr-xdebian/orig-tar.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/debian/orig-tar.sh b/debian/orig-tar.sh
deleted file mode 100755
index b527a19..0000000
--- a/debian/orig-tar.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh -e
-
-# called by uscan with '--upstream-version' <version> <file>
-DIR=picocontainer-$2
-TAR=../libpicocontainer-java_$2.orig.tar.gz
-
-# clean up the upstream tarball
-mkdir $DIR
-(cd $DIR && jar -x -f ../$3)
-tar -c -z -f $TAR $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
-
-exit 0