diff options
Diffstat (limited to 'code/macosx/BuildRelease')
-rwxr-xr-x | code/macosx/BuildRelease | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/code/macosx/BuildRelease b/code/macosx/BuildRelease new file mode 100755 index 0000000..fd49285 --- /dev/null +++ b/code/macosx/BuildRelease @@ -0,0 +1,17 @@ +#!/bin/zsh
+
+APPNAME="Quake3"
+PACKAGENAME= Quake3
+
+(cd $OMNI_SOURCE_ROOT; ./Build Quake3 install)
+
+rm -rf "/tmp/$APPNAME"
+mkdir "/tmp/$APPNAME"
+cp "Read Me.rtf" "/tmp/$APPNAME"
+
+cd /Users/Shared/$USER/InstalledProducts
+gnutar cf - FAKK2.app | (cd "/tmp/$APPNAME"; gnutar xf -)
+
+cd "/tmp/$APPNAME"
+sudo ~bungi/Unix/bin/files2image $PACKAGENAME ./*
+
|