Codebase list findbugs / debian/2.0.2-2 debian / orig-tar.sh
debian/2.0.2-2

Tree @debian/2.0.2-2 (Download .tar.gz)

orig-tar.sh @debian/2.0.2-2

5c4173c
 
 
 
 
 
 
b144e6e
5c4173c
f8e9cf1
14e8416
 
5c4173c
 
 
 
 
 
 
 
 
 
 
 
#!/bin/sh -e

VERSION=$2
DIR=findbugs-$VERSION
TAR=findbugs_$VERSION.orig.tar.bz2

# clean up the upstream tarball
unzip -x $3
cd $DIR
#Remove shipped jar + doc without sources
rm -rf lib/*.jar lib/*.zip lib/*.txt
rm -rf src/doc/pressRelease.pdf doc/pressRelease.pdf build-lib/
cd ..
tar jcvf ../$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