[PD-cvs] SF.net SVN: pure-data: [10025] trunk/scripts/auto-build/ desiredata-auto-builder.sh

matju at users.sourceforge.net matju at users.sourceforge.net
Wed Jun 18 16:25:00 CEST 2008


Revision: 10025
          http://pure-data.svn.sourceforge.net/pure-data/?rev=10025&view=rev
Author:   matju
Date:     2008-06-18 07:24:58 -0700 (Wed, 18 Jun 2008)

Log Message:
-----------
forgot to remove this...

Removed Paths:
-------------
    trunk/scripts/auto-build/desiredata-auto-builder.sh

Deleted: trunk/scripts/auto-build/desiredata-auto-builder.sh
===================================================================
--- trunk/scripts/auto-build/desiredata-auto-builder.sh	2008-06-18 13:40:47 UTC (rev 10024)
+++ trunk/scripts/auto-build/desiredata-auto-builder.sh	2008-06-18 14:24:58 UTC (rev 10025)
@@ -1,71 +0,0 @@
-#!/bin/sh
-
-# the source dir where this script is
-SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'`
-. $SCRIPT_DIR/auto-build-common
-
-# the name of this script
-SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
-
-case $SYSTEM in 
-	 linux)
-		  configure_options="--enable-alsa --enable-jack"
-		  platform_name=`uname -m`
-		  ;;
-	 darwin)
-		  configure_options=""
-		  platform_name=`uname -p`
-		  ;;
-	 mingw*)
-		  configure_options=""
-		  platform_name=i386
-		  ;;
-	 cygwin*)
-		  configure_options=""
-		  platform_name=i386
-		  ;;
-	 *)
-		  echo "ERROR: Platform $SYSTEM not supported!"
-		  exit
-		  ;;
-esac
-
-# convert into absolute path
-cd `echo $0 | sed 's|\(.*\)/.*$|\1|'`/../..
-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/distros/desiredata/ \
-	 ${auto_build_root_dir}/
-
-case $SYSTEM in 
-	 darwin)
-		  archive_format=dmg
-		  archive=`ls -1 ${auto_build_root_dir}/packages/darwin_app/Pd*.dmg`
-		  upload_filename=`ls -1 ${archive} | sed "s|.*/\(.*\)\.${archive_format}|\1-${HOSTNAME}.${archive_format}|"`
-		  cd ${auto_build_root_dir}/packages/darwin_app/
-		  make package_clean
-		  make test_locations
-		  make darwin_app_core && \
-				make readme_install && \
-				make package && \
-				rsync -a ${archive} \
-				rsync://128.238.56.50/upload/${DATE}/${upload_filename} && \
-				echo SUCCESS
-		  ;;
-	 *)
-		  package_name="/tmp/desiredata-${DATE}-${SYSTEM}-${HOSTNAME}-${platform_name}.tar.bz2"
-		  cd ${auto_build_root_dir}/pd/src && \
-				autoconf && \
-				./configure $configure_options && \
-				make  && \
-				cd ../../ && \
-				tar cjf $package_name pd && \
-				rsync -a ${package_name} rsync://128.238.56.50/upload/${DATE}/ && \
-				rm -f -- ${package_name} && \
-				echo SUCCESS
-		  ;;
-esac
-


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list