Add new ant target: makeOSXBundle (with an alias of "osx") to make a

self-contained OSX bundle (which is how apps are normally distributed on OSX).
This commit is contained in:
kytv
2011-08-10 19:34:02 +00:00
parent 2a129c462d
commit a1a1c03d84
5 changed files with 76 additions and 14 deletions

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleName</key>
<string>itoopie</string>
<key>CFBundleVersion</key>
<string>0.0.2</string>
<key>CFBundleAllowMixedLocalizations</key>
<string>true</string>
<key>CFBundleExecutable</key>
<string>JavaApplicationStub</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleIconFile</key>
<string>logo.icns</string>
<key>Java</key>
<dict>
<key>MainClass</key>
<string>net.i2p.itoopie.Main</string>
<key>JVMVersion</key>
<string>1.5+</string>
<key>ClassPath</key>
<string>$JAVAROOT/itoopie.jar</string>
<key>Properties</key>
<dict>
<key>apple.laf.useScreenMenuBar</key>
<string>true</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -0,0 +1 @@
APPL????