File: orig-tar.sh

package info (click to toggle)
libmetadata-extractor-java 2.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 6,416 kB
  • sloc: java: 35,343; xml: 200; sh: 11; makefile: 2
file content (17 lines) | stat: -rwxr-xr-x 455 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

VERSION=$2
TAR=../libmetadata-extractor-java_$VERSION.orig.tar.xz
DIR=metadata-extractor-$VERSION

git clone --branch $VERSION https://github.com/drewnoakes/metadata-extractor.git $DIR
rm -Rf $DIR/*.iml $DIR/.git* $DIR/Javadoc/* $DIR/Libraries/* $DIR/.travis.yml

tar -c -J -f $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