File: orig-tar.sh

package info (click to toggle)
libxml-security-java 1.4.5-1%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 14,776 kB
  • sloc: java: 42,230; xml: 26,783; sh: 242; makefile: 11
file content (16 lines) | stat: -rwxr-xr-x 413 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

VERSION=$2
TAR=../libxml-security-java_$VERSION.orig.tar.gz
DIR=libxml-security-java-$VERSION
TAG="$VERSION"

svn export http://svn.apache.org/repos/asf/santuario/xml-security-java/tags/${TAG}/ $DIR
tar -c -z -f $TAR --exclude '*.jar' $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