| author | huffman | 
| Tue, 02 Jun 2009 18:59:50 -0700 | |
| changeset 31396 | f7c7bf82b12f | 
| parent 30901 | 9343d4b7c5bf | 
| permissions | -rwxr-xr-x | 
| 29136 | 1 | #!/bin/bash | 
| 2 | # | |
| 3 | # Make Isabelle application bundle | |
| 4 | ||
| 5 | THIS="$(cd "$(dirname "$0")"; pwd)" | |
| 6 | ||
| 7 | PLATYPUS_APP="/Applications/Platypus-4.0/Platypus.app" | |
| 8 | COCOADIALOG_APP="/Applications/CocoaDialog.app" | |
| 9 | ||
| 10 | "$PLATYPUS_APP/Contents/Resources/platypus" \ | |
| 11 | -a Isabelle -u Isabelle \ | |
| 12 | -I "de.tum.in.isabelle" \ | |
| 13 | -i "$THIS/isabelle.icns" \ | |
| 14 | -p /bin/bash \ | |
| 15 | -c "$THIS/script" \ | |
| 16 | -o None \ | |
| 17 | -f "$COCOADIALOG_APP" \ | |
| 29154 | 18 | "$PWD/Isabelle.app" |