diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-10-05 14:18:34 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-10-05 14:18:34 (GMT) |
commit | cd3017c8730ce66539d539890d72434cf644ab80 (patch) | |
tree | d3a6c84c5153572c8285b115036cd51a159a6cde /Swift/Packaging/Source/package.sh | |
parent | 0004ba6b32170b57b3a6a210846aaca9fe80d69b (diff) | |
download | swift-contrib-cd3017c8730ce66539d539890d72434cf644ab80.zip swift-contrib-cd3017c8730ce66539d539890d72434cf644ab80.tar.bz2 |
Added tarball packaging script.
Resolves: #517
Diffstat (limited to 'Swift/Packaging/Source/package.sh')
-rwxr-xr-x | Swift/Packaging/Source/package.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Swift/Packaging/Source/package.sh b/Swift/Packaging/Source/package.sh new file mode 100755 index 0000000..ef1e9a3 --- /dev/null +++ b/Swift/Packaging/Source/package.sh @@ -0,0 +1,22 @@ +#!/bin/sh + +export PYTHONPATH=../../../BuildTools/SCons +VERSION=`../../../BuildTools/GetBuildVersion.py swift` +DIRNAME=swift-$VERSION + +if [ -z "$VERSION" ]; then + echo "Unable to determine version" + exit -1 +fi + +echo "Cleaning up old sources ..." +rm -rf swift-* + +echo "Checking out a fresh copy ..." +rm -rf $DIRNAME +git clone ../../../.git $DIRNAME +echo "$VERSION" > $DIRNAME/VERSION.swift +rm -rf $DIRNAME/.git + +echo "Creating tarball ..." +tar czf $DIRNAME.tar.gz $DIRNAME |