Add MacOSX icon to application bundle
Tue Jul 26 15:32:25 WEST 2005 Malcolm.Wallace@cs.york.ac.uk
* Add MacOSX icon to application bundle
{
hunk ./Makefile 4
-MAIN = blobs
+MAIN = Blobs
hunk ./Makefile 9
-MKAPP = /usr/local/wxhaskell/bin/macosx-app
+MAC = yes
hunk ./Makefile 38
- $(MKAPP) $(MAIN)$(EXE)
+ifdef MAC
+ /usr/local/wxhaskell/bin/macosx-app $(MAIN)$(EXE)
+ rm $(MAIN)$(EXE)
+ cp $(MAIN).icns $(MAIN).app/Contents/Resources
+ patch -p0 <patch.icons
+endif
addfile ./patch.icons
hunk ./patch.icons 1
+--- blobs.app/Contents/Info.plist Tue Jul 26 15:24:41 2005
++++ blobs.app/Contents/Info.plist Tue Jul 26 15:16:53 2005
+@@ -11,7 +11,7 @@
+ <key>CFBundleExecutable</key>
+ <string>Blobs</string>
+ <key>CFBundleIconFile</key>
+- <string>wxmac.icns</string>
++ <string>Blobs.icns</string>
+ <key>CFBundleName</key>
+ <string>Blobs</string>
+ <key>CFBundlePackageType</key>
}