Admin/MacOS/App1/mk
author wenzelm
Mon, 23 Jul 2012 18:21:26 +0200
changeset 48452 4ad6182d5bb9
parent 48451 6d9c43f51e60
permissions -rwxr-xr-x
try droppable application using Platypus functionality -- in contrast to earlier AppHack (cf. 9343d4b7c5bf);

#!/bin/bash
#
# Make Isabelle application bundle

THIS="$(cd "$(dirname "$0")"; pwd)"

COCOADIALOG_APP="/Applications/CocoaDialog.app"

/usr/local/bin/platypus \
  -a Isabelle -u Isabelle \
  -I "de.tum.in.isabelle" \
  -i "$THIS/../isabelle.icns" \
  -D -X thy \
  -Q "$THIS/../theory.icns" \
  -p /bin/bash \
  -R \
  -o None \
  -f "$COCOADIALOG_APP" \
  "$THIS/script" \
  "$PWD/Isabelle.app"