diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-08-10 18:16:48 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-08-10 18:16:48 +0000 |
commit | 65160da1eb5a2da486effc52db278c588fb7e03b (patch) | |
tree | f94f1fce420fd8f8d749ff30aa1be13e569b9e02 /scripts/auto-build/pure-data.umlauete.git-auto-builder.sh | |
parent | f8a784e255c9253b925ea755b5498b0887525c7b (diff) |
copied git script for two more distros
svn path=/trunk/; revision=13781
Diffstat (limited to 'scripts/auto-build/pure-data.umlauete.git-auto-builder.sh')
-rwxr-xr-x | scripts/auto-build/pure-data.umlauete.git-auto-builder.sh | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/scripts/auto-build/pure-data.umlauete.git-auto-builder.sh b/scripts/auto-build/pure-data.umlauete.git-auto-builder.sh new file mode 100755 index 00000000..387b2855 --- /dev/null +++ b/scripts/auto-build/pure-data.umlauete.git-auto-builder.sh @@ -0,0 +1,37 @@ +#!/bin/sh + +# the source dir where this script is +## this could be done more easily with ${0%/*} +SCRIPT_DIR=$(echo $0 | sed 's|\(.*\)/.*$|\1|') +. $SCRIPT_DIR/auto-build-common + +# the name of this script +## this could be done more easily with ${0##*/} +SCRIPT=$(echo $0| sed 's|.*/\(.*\)|\1|g') + +# convert into absolute path +cd "${SCRIPT_DIR}/../.." +auto_build_root_dir=`pwd` +echo "build root: $auto_build_root_dir" +rsync_distro "$auto_build_root_dir" + + +cd "${auto_build_root_dir}" +echo "--------------------------------------------------------------------------------" +git pull +echo "--------------------------------------------------------------------------------" +./autogen.sh +echo "--------------------------------------------------------------------------------" +./configure +echo "--------------------------------------------------------------------------------" +make +echo "--------------------------------------------------------------------------------" +mkdir "${auto_build_root_dir}/testinstall" +make DESTDIR="${auto_build_root_dir}/testinstall" install +echo "--------------------------------------------------------------------------------" +make dist + + +# since the above test can cause this script to exit with an error, force it +# to be happy to prevent getting automated error emails to root +true |