summaryrefslogtreecommitdiffstats
path: root/development/Pivy/Pivy-mksrctarball.sh
blob: bfeaaa161cd545553ecfd07265601b21c18406ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

# This script helps you to download and compress the sourcecode for
# Pivy from its svn server.

set -e

PRGNAM=Pivy
VERSION=$(date +"%Y%m%d")
SVNSERVER=https://svn.coin3d.org/repos/

echo "--> Downloading sourcecode from $SVNSERVER"
echo "t" | svn export $SVNSERVER/$PRGNAM/trunk $PRGNAM-$VERSION 2>&1 | tee svn-$PRGNAM-$VERSION.log

echo "--> Making the sourcecode tarball: $PRGNAM-$VERSION.tar.bz2 "
tar -c $PRGNAM-$VERSION/ | bzip2 > $PRGNAM-$VERSION.tar.bz2

echo "--> Erasing the sourcecode directory: $PRGNAM-$VERSION/"
rm -rf $PRGNAM-$VERSION/

echo "--> Sourcecode tarball for $PRGNAM: $PRGNAM-$VERSION.tar.bz2"