File: orig-tar.sh

package info (click to toggle)
libjboss-marshalling-java 1.1.3.GA-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,224 kB
  • ctags: 2,417
  • sloc: java: 14,405; xml: 339; makefile: 17; sh: 11
file content (17 lines) | stat: -rw-r--r-- 356 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -e

TAR=../libjboss-marshalling-java_$2.orig.tar.gz
DIR=jboss-marshalling-$2
TAG=$2

svn export http://anonsvn.jboss.org/repos/jbossmarshalling/core/tags/$TAG $DIR
tar -c -z -f $TAR $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