r21026: Add a helpful script to do the things we need to do to make a release
authorAndrew Bartlett <abartlet@samba.org>
Fri, 26 Jan 2007 04:37:06 +0000 (04:37 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:44:21 +0000 (14:44 -0500)
tarball.

Andrew Bartlett

source/script/mkrelease.sh [new file with mode: 0755]

diff --git a/source/script/mkrelease.sh b/source/script/mkrelease.sh
new file mode 100755 (executable)
index 0000000..0df4edb
--- /dev/null
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+FROM=$1
+VERSION=$2
+
+svn export $FROM samba-$VERSION
+
+( cd samba-$VERSION || exit 1
+  (cd source && ./autogen.sh ) || exit 1
+  rm -rf webapps/qooxdoo-*-sdk/frontend/framework/.cache || exit 1
+) || exit 1
+
+tar -zcf samba-$VERSION.tar.gz samba-$VERSION