File: orig-tar.sh

package info (click to toggle)
xmlbeans-maven-plugin 2.3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 456 kB
  • ctags: 222
  • sloc: java: 1,105; xml: 916; sh: 7; jsp: 5; makefile: 5
file content (10 lines) | stat: -rwxr-xr-x 340 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e

VERSION=$2
TAR=../xmlbeans-maven-plugin_$VERSION.orig.tar.gz
DIR=xmlbeans-maven-plugin-$VERSION
TAG=$(echo "xmlbeans-maven-plugin-$VERSION" | sed -re's/~(alpha|beta)/-\1-/')

svn export http://svn.codehaus.org/mojo/tags/${TAG}/ $DIR
GZIP=--best tar -c -z -f $TAR --exclude '*.jar' --exclude '*.class' $DIR
rm -rf $DIR ../$TAG