File: orig-tar.sh

package info (click to toggle)
args4j 2.0.16-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 596 kB
  • sloc: java: 2,915; xml: 457; sh: 19; makefile: 7
file content (17 lines) | stat: -rwxr-xr-x 518 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

VERSION=$2
TAR=../args4j_$VERSION.orig.tar.gz
DIR=args4j-$VERSION
TAG=$(echo "args4j-site-$VERSION" | sed -re's/~(alpha|beta)/-\1-/' | sed 's/\./_/g')

svn export https://svn.java.net/svn/args4j~svn/tags/${TAG}/ $DIR 
GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' \
	--exclude 'www' --exclude 'repo' --exclude '*.zip' $DIR
rm -rf $DIR ../$TAG

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