changeset 411:9f6436615ac7

I had put the Info.plist in deploy/osx/ before I noticed it was also in osx/ -- sorry. Removing from osx/ -- we really need the plist to be written by deploy/osx/deploy.sh (and not by qmake) because we need the version number in it. However, leaving it in the .pro file anyway so we don't end up with nothing at least if nobody runs deploy.sh
author Chris Cannam
date Fri, 08 Apr 2011 16:39:23 +0100
parents 663bfebdef4e
children 44741262c2e0
files osx/Info.plist sonic-visualiser.pro
diffstat 2 files changed, 1 insertions(+), 142 deletions(-) [+]
line wrap: on
line diff
--- a/osx/Info.plist	Fri Apr 08 16:35:13 2011 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,141 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
-<plist version="0.9">
-<dict>
-	<key>CFBundleIconFile</key>
-	<string>sv-macicon.icns</string>
-	<key>CFBundlePackageType</key>
-	<string>APPL</string>
-    <key>CFBundleGetInfoString</key>
-	<string>Created by Qt/QMake</string>
-	<key>CFBundleSignature</key>
-	<string>SNCV</string>
-	<key>CFBundleExecutable</key>
-	<string>Sonic Visualiser</string>
-	<key>CFBundleIdentifier</key>
-	<string>org.isophonics.SonicVisualiser</string>
-	<key>CFBundleDocumentTypes</key>
-	<array>
-		<!-- we are an 'editor' of SV files -->
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>sv</string>
-			</array>
-			<!-- TODO
-			<key>CFBundleTypeIconFile</key>
-			<string>SVProject.icns</string> -->
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>application/x-sonic-visualiser-project</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>Sonic Visualiser Project</string>
-			<key>CFBundleTypeOSTypes</key>
-			<array>
-				<string>****</string>
-			</array>
-			<key>CFBundleTypeRole</key>
-			<string>Editor</string>
-			<key>LSHandlerRank</key>
-			<string>Owner</string>
-			<key>LSIsAppleDefaultForType</key>
-			<true/>
-		</dict>
-		
-		<!-- we are a 'viewer' of general audio files -->
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>mp3</string>
-			</array>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>audio/mpeg</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>MP3 Audio</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>LSIsAppleDefaultForType</key>
-			<false/>
-			<key>LSHandlerRank</key>
-			<string>Alternate</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>ogg</string>
-				<string>oga</string>
-			</array>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>audio/ogg</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>Ogg Vorbis Audio</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>LSIsAppleDefaultForType</key>
-			<false/>
-			<key>LSHandlerRank</key>
-			<string>Alternate</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>wav</string>
-			</array>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>audio/x-wav</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>Wave Audio</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>LSIsAppleDefaultForType</key>
-			<false/>
-			<key>LSHandlerRank</key>
-			<string>Alternate</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>aif</string>
-				<string>aiff</string>
-			</array>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>audio/x-aiff</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>AIFF Audio</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>LSIsAppleDefaultForType</key>
-			<false/>
-			<key>LSHandlerRank</key>
-			<string>Alternate</string>
-		</dict>
-		<dict>
-			<key>CFBundleTypeExtensions</key>
-			<array>
-				<string>flac</string>
-			</array>
-			<key>CFBundleTypeMIMETypes</key>
-			<array>
-				<string>audio/flac</string>
-			</array>
-			<key>CFBundleTypeName</key>
-			<string>FLAC Audio</string>
-			<key>CFBundleTypeRole</key>
-			<string>Viewer</string>
-			<key>LSIsAppleDefaultForType</key>
-			<false/>
-			<key>LSHandlerRank</key>
-			<string>Alternate</string>
-		</dict>
-	</array>
-  </dict>
-</plist>
--- a/sonic-visualiser.pro	Fri Apr 08 16:35:13 2011 +0100
+++ b/sonic-visualiser.pro	Fri Apr 08 16:39:23 2011 +0100
@@ -41,5 +41,5 @@
            main/Surveyer.cpp
 
 # for mac integration
-QMAKE_INFO_PLIST = osx/Info.plist
+QMAKE_INFO_PLIST = deploy/osx/Info.plist