summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-05-31 22:08:14 +0100
committerCarl Hetherington <cth@carlh.net>2013-05-31 22:08:14 +0100
commitc8be8124ce89aee17df080745c9651d6e3975a4c (patch)
treea57482b1183a9c804d8cf6e2f4e734879af5994d /platform
parent2adf3ce04f5bff645e40f7e8aca1c7e3c014375a (diff)
Various OS X tweaks.
Diffstat (limited to 'platform')
-rw-r--r--platform/osx/Info.plist.in2
-rw-r--r--platform/osx/make_dmg.sh3
2 files changed, 4 insertions, 1 deletions
diff --git a/platform/osx/Info.plist.in b/platform/osx/Info.plist.in
index 3f4ab60ef..c904d91dd 100644
--- a/platform/osx/Info.plist.in
+++ b/platform/osx/Info.plist.in
@@ -9,7 +9,7 @@
<key>CFBundleGetInfoString</key>
<string>DCP generator</string>
<key>CFBundleIconFile</key>
- <string>appIcon.icns</string>
+ <string>DVD-o-matic.icns</string>
<key>CFBundleIdentifier</key>
<string>net.carlh.dvdomatic</string>
<key>CFBundleInfoDictionaryVersion</key>
diff --git a/platform/osx/make_dmg.sh b/platform/osx/make_dmg.sh
index 52db90575..2aeeea66a 100644
--- a/platform/osx/make_dmg.sh
+++ b/platform/osx/make_dmg.sh
@@ -17,10 +17,12 @@ appdir="DVD-o-matic.app"
approot=$appdir/Contents
libs=$approot/lib
macos=$approot/MacOS
+resources=$approot/Resources
rm -rf $WORK/$appdir
mkdir -p $WORK/$macos
mkdir -p $WORK/$libs
+mkdir -p $WORK/$resources
cp build/src/tools/dvdomatic $WORK/$macos/
cp build/src/lib/libdvdomatic.dylib $WORK/$libs/
@@ -75,6 +77,7 @@ done
cp build/platform/osx/Info.plist $WORK/$approot
+cp icons/dvdomatic.icns $WORK/$resources/DVD-o-matic.icns
exit 0