aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-08-03 05:37:35 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2006-08-03 05:37:35 +0000
commite6b2a681e3d661202d754ba22fe7171ffbb55179 (patch)
tree07e4a10d037642a57e7894972465a2a2abec3aab
parent26ed11410a57b16d69c45d804ccba1c52cdf53a6 (diff)
working pd MAIN auto-builder, at least on Debian/stable
svn path=/trunk/; revision=5467
-rwxr-xr-xscripts/auto-build/pd-main-auto-builder.sh16
1 files changed, 14 insertions, 2 deletions
diff --git a/scripts/auto-build/pd-main-auto-builder.sh b/scripts/auto-build/pd-main-auto-builder.sh
index 20ffbdd5..f88a55a7 100755
--- a/scripts/auto-build/pd-main-auto-builder.sh
+++ b/scripts/auto-build/pd-main-auto-builder.sh
@@ -27,9 +27,21 @@ case $SYSTEM in
;;
esac
-package_name="${ROOT_DIR{}/pd-${DATE}-${SYSTEM}-${HOSTNAME}-${platform_name}.tar.bz2"
+package_name="${ROOT_DIR}/pd-${DATE}-${SYSTEM}-${HOSTNAME}-${platform_name}.tar.bz2"
-cd ${ROOT_DIR}/pure-data/pd/src && \
+
+auto_build_root_dir=`echo $0 | sed 's|\(.*\)/.*$|\1|'`/..
+# convert into absolute path
+cd ${auto_build_root_dir}
+auto_build_root_dir=`pwd`
+
+echo "root: $auto_build_root_dir"
+
+# let rsync handle the cleanup with --delete
+#rsync -av --delete rsync://128.238.56.50/pure-data/pd-main/ ${auto_build_root_dir}/
+
+
+cd ${ROOT_DIR}/pd/src && \
autoconf && \
./configure $configure_options && \
make && \