Changeset 2406 in vbox
- Timestamp:
- Apr 28, 2007 7:42:27 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20813
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 1 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile
r2366 r2406 46 46 47 47 INSTALLS = VirtualBox.nls 48 INSTALLS.darwin = VirtualBox.app49 48 50 49 VirtualBox_TEMPLATE = VBOXQTGUIEXE … … 232 231 # On Mac OS X (darwin) we need to install icon resources and compusory bundle contents. 233 232 # 233 INSTALLS.darwin += VirtualBox.app 234 234 VirtualBox.app_INST = $(INST_VIRTUALBOX)Contents/ 235 235 VirtualBox.app_MODE = 644 … … 240 240 241 241 $(PATH_TARGET)/Info.plist: src/darwin/Info.plist $(VBOX_VERSION_MK) | $(call DIRDEP,$(PATH_TARGET)) 242 $(call MSG_L1,Generating $@) 243 $(xQUIET)$(RM) -f $@ 244 $(xQUIET)$(SED) \ 245 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \ 246 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \ 247 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \ 248 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \ 249 $< > $@ 250 251 INSTALLS.darwin += VirtualBoxVM.app 252 VirtualBoxVM.app_INST = $(VirtualBox.app_INST)Resources/VirtualBoxVM.app/Contents/ 253 VirtualBoxVM.app_MODE = 644 254 VirtualBoxVM.app_SOURCES = \ 255 src/darwin/VM-PkgInfo=>PkgInfo \ 256 $(PATH_TARGET)/VM-Info.plist=>Info.plist \ 257 images/VirtualBox.icns=>Resources/virtualbox.icns 258 VirtualBoxVM.app_SYMLINKS = \ 259 MacOS=>../../../MacOS/ 260 261 $(PATH_TARGET)/VM-Info.plist: src/darwin/VM-Info.plist $(VBOX_VERSION_MK) | $(call DIRDEP,$(PATH_TARGET)) 242 262 $(call MSG_L1,Generating $@) 243 263 $(xQUIET)$(RM) -f $@ -
trunk/src/VBox/Frontends/VirtualBox/src/darwin/VM-Info.plist
r2374 r2406 6 6 <key>CFBundleSignature</key> <string>VBOX</string> 7 7 <key>CFBundleDevelopmentRegion</key> <string>English</string> 8 <key>CFBundleIdentifier</key> <string>org.virtualbox.app.VirtualBox </string>9 <key>CFBundleName</key> <string>VirtualBox </string>8 <key>CFBundleIdentifier</key> <string>org.virtualbox.app.VirtualBox.VM</string> 9 <key>CFBundleName</key> <string>VirtualBox VM</string> 10 10 <key>CFBundleExecutable</key> <string>VirtualBox</string> 11 11 <key>CFBundleVersion</key> <string>@VBOX_VERSION_MAJOR@.@VBOX_VERSION_MINOR@.@VBOX_VERSION_BUILD@</string>
Note:
See TracChangeset
for help on using the changeset viewer.