aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/pd-extended-auto-builder.sh
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-04-18 17:19:59 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-04-18 17:19:59 +0000
commiteffe41caef455545ae5a090f6e0764631aa11384 (patch)
treed23d8bbc239cd45e8ccf002eda02b3c3aebfdfb3 /scripts/auto-build/pd-extended-auto-builder.sh
parentad7d4dbd25b3292830f2baadb73511abab20d555 (diff)
clean up pd-extended auto-build script and prepped the release script
svn path=/trunk/; revision=9717
Diffstat (limited to 'scripts/auto-build/pd-extended-auto-builder.sh')
-rwxr-xr-xscripts/auto-build/pd-extended-auto-builder.sh111
1 files changed, 54 insertions, 57 deletions
diff --git a/scripts/auto-build/pd-extended-auto-builder.sh b/scripts/auto-build/pd-extended-auto-builder.sh
index 796ccd63..56824f28 100755
--- a/scripts/auto-build/pd-extended-auto-builder.sh
+++ b/scripts/auto-build/pd-extended-auto-builder.sh
@@ -10,26 +10,26 @@ SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
BUILD_DIR=.
case $SYSTEM in
- linux)
- BUILD_DIR=linux_make
- echo "Configuring to use $BUILD_DIR on GNU/Linux"
- ;;
- darwin)
- BUILD_DIR=darwin_app
- echo "Configuring to use $BUILD_DIR on Darwin/Mac OS X"
- ;;
- mingw*)
- BUILD_DIR=win32_inno
- echo "Configuring to use $BUILD_DIR on MinGW/Windows"
- ;;
- cygwin*)
- BUILD_DIR=win32_inno
- echo "Configuring to use $BUILD_DIR on Cygwin/Windows"
- ;;
- *)
- echo "ERROR: Platform $SYSTEM not supported!"
- exit
- ;;
+ linux)
+ BUILD_DIR=linux_make
+ echo "Configuring to use $BUILD_DIR on GNU/Linux"
+ ;;
+ darwin)
+ BUILD_DIR=darwin_app
+ echo "Configuring to use $BUILD_DIR on Darwin/Mac OS X"
+ ;;
+ mingw*)
+ BUILD_DIR=win32_inno
+ echo "Configuring to use $BUILD_DIR on MinGW/Windows"
+ ;;
+ cygwin*)
+ BUILD_DIR=win32_inno
+ echo "Configuring to use $BUILD_DIR on Cygwin/Windows"
+ ;;
+ *)
+ echo "ERROR: Platform $SYSTEM not supported!"
+ exit
+ ;;
esac
@@ -52,7 +52,6 @@ esac
cd "${auto_build_root_dir}/packages/$BUILD_DIR"
make -C "${auto_build_root_dir}/packages" set_version
make test_locations
-ls -l /usr/local/include/stdlib.h || echo no /usr/local/include/stdlib.h
mount
make package_clean
make install && make package
@@ -63,51 +62,49 @@ upload_build ()
platform_folder=$1
build_folder=$2
archive_format=$3
-
+
archive=`ls -1 ${auto_build_root_dir}/packages/${platform_folder}/${build_folder}/Pd*.${archive_format} | tail -1`
echo "upload specs $1 $2 $3"
echo "Uploading $archive"
- upload_filename=`ls -1 ${archive} | sed "s|.*/\(.*\)\.${archive_format}|\1-${HOSTNAME}.${archive_format}|"`
- case $SYSTEM in
- mingw*)
- if [ -e ${archive} ]; then
- /c/cygwin/bin/sh -c \
- "rsync -a ${archive} rsync://128.238.56.50/upload/${DATE}/${upload_filename}" && \
- md5sum ${archive} > ${archive}.md5 && \
- /c/cygwin/bin/sh -c \
- "rsync -a ${archive}.md5 rsync://128.238.56.50/upload/${DATE}/${upload_filename}.md5" && \
- echo SUCCESS
- fi
+ upload_filename=`ls -1 ${archive} | sed "s|.*/\(.*\)\.${archive_format}|\1-${HOSTNAME}.${archive_format}|"`
+ if [ -e ${archive} ]; then
+ case $SYSTEM in
+ mingw*)
+ /c/cygwin/bin/sh -c \
+ "rsync -a ${archive} rsync://128.238.56.50/upload/${DATE}/${upload_filename}" && \
+ md5sum ${archive} > ${archive}.md5 && \
+ /c/cygwin/bin/sh -c \
+ "rsync -a ${archive}.md5 rsync://128.238.56.50/upload/${DATE}/${upload_filename}.md5" && \
+ echo SUCCESS
;;
- *)
- if [ -e ${archive} ]; then
- rsync -a ${archive} rsync://128.238.56.50/upload/${DATE}/${upload_filename} && \
- md5sum ${archive} > ${archive}.md5 && \
- rsync -a ${archive}.md5 rsync://128.238.56.50/upload/${DATE}/${upload_filename}.md5 && \
- echo SUCCESS
- fi
+ *)
+ rsync -a ${archive} rsync://128.238.56.50/upload/${DATE}/${upload_filename} && \
+ md5sum ${archive} > ${archive}.md5 && \
+ rsync -a ${archive}.md5 rsync://128.238.56.50/upload/${DATE}/${upload_filename}.md5 && \
+ echo SUCCESS
;;
- esac
+ esac
+ fi
}
case $SYSTEM in
- linux)
- if [ -x /usr/bin/dpkg-deb ]; then
- upload_build linux_make . deb
- else
- upload_build linux_make build tar.bz2
- fi
- ;;
- darwin)
- upload_build darwin_app . dmg
- ;;
- mingw*)
- upload_build win32_inno Output exe
- ;;
- cygwin*)
- upload_build win32_inno Output exe
- ;;
+ linux)
+ if [ -x /usr/bin/dpkg-deb ]; then
+ upload_build linux_make . deb
+ else
+ upload_build linux_make build tar.bz2
+ fi
+ ;;
+ darwin)
+ upload_build darwin_app . dmg
+ ;;
+ mingw*)
+ upload_build win32_inno Output exe
+ ;;
+ cygwin*)
+ upload_build win32_inno Output exe
+ ;;
esac