aboutsummaryrefslogtreecommitdiff
path: root/scripts/automated-builder.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/automated-builder.sh')
-rwxr-xr-xscripts/automated-builder.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/scripts/automated-builder.sh b/scripts/automated-builder.sh
deleted file mode 100755
index cdf9f3f2..00000000
--- a/scripts/automated-builder.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-
-# this script is the first attempt to have an automated updater and builder
-
-SYSTEM=`uname -s`
-DATE=`date +%Y-%m-%d`
-TIME=`date +%H.%M.%S`
-SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
-LOGFILE=/home/pd/logs/${DATE}_-_${TIME}_-_${SCRIPT}_-_${SYSTEM}.txt
-
-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/ ${auto_build_root_dir}/
-
-BUILD_DIR=.
-if [ "$SYSTEM" == "Linux" ]; then
- BUILD_DIR=linux_make
-fi
-if [ "$SYSTEM" == "Darwin" ]; then
- BUILD_DIR=darwin_app
-fi
-if [ "`echo $SYSTEM | sed -n 's|\(MINGW\)|\1|p'`" == "MINGW" ]; then
- BUILD_DIR=win32_inno
-fi
-
-cd "${auto_build_root_dir}/packages/$BUILD_DIR"
-make -C "${auto_build_root_dir}/packages" patch_pd
-make install && make package
-
-make test_package
-make test_locations