diff --git a/processing/build/macosx/dist.sh b/processing/build/macosx/dist.sh index b1b4f7d18..1dee3c798 100755 --- a/processing/build/macosx/dist.sh +++ b/processing/build/macosx/dist.sh @@ -6,13 +6,15 @@ then # old 4 char version.. osx only uses the two chars #REVISION=`head -c 4 ../../todo.txt` # a more useful version of head than what's included with osx - REVISION=`head -c 4 ../../todo.txt | tail -c 2` + #REVISION=`head -c 4 ../../todo.txt | tail -c 2` + REVISION=`head -c 4 ../../todo.txt` else # can't get four bytes of head (osx doesn't support -c) REVISION=0000 fi -VERSIONED=`cat ../../app/PdeBase.java | grep 00$REVISION` +#VERSIONED=`cat ../../app/PdeBase.java | grep 00$REVISION` +VERSIONED=`cat ../../app/PdeBase.java | grep $REVISION` if [ -z "$VERSIONED" ] then echo Fix the revision number in PdeBase.java @@ -101,7 +103,10 @@ find processing -name "._*" -exec rm -f {} ';' find processing -name "CVS" -exec rm -rf {} ';' # zip it all up for release -mv processing "Processing $REVISION" +#mv processing "Processing $REVISION" +mv processing "processing-$REVISION" + +stuff -f sitx processing-$REVISION # if there is a command line tool to make a dmg from this dir.. hmm diff --git a/processing/build/macosx/dist/DS_Store b/processing/build/macosx/dist/DS_Store index 282f22b6e..552029e3a 100755 Binary files a/processing/build/macosx/dist/DS_Store and b/processing/build/macosx/dist/DS_Store differ diff --git a/processing/build/macosx/make.sh b/processing/build/macosx/make.sh index f221a5578..055e0195d 100755 --- a/processing/build/macosx/make.sh +++ b/processing/build/macosx/make.sh @@ -106,6 +106,7 @@ zip -0rq ../lib/pde.jar . cd ../.. # get the libs +mkdir -p work/Processing.app/Contents/Resources/Java/ cp work/lib/*.jar work/Processing.app/Contents/Resources/Java/