mirror of
https://github.com/chocolate-doom/launcher.git
synced 2024-11-09 23:01:43 +00:00
Move Info.plist out of app-skeleton, to be autogenerated to include
package name. Add config.make.in for the same reason. Subversion-branch: /launcher Subversion-revision: 1780
This commit is contained in:
parent
f19654488d
commit
7e5a345f42
4 changed files with 45 additions and 3 deletions
|
@ -22,6 +22,7 @@ $(STAGING_DIR): launcher
|
|||
rm -rf $(STAGING_DIR)
|
||||
mkdir $(STAGING_DIR)
|
||||
cp -R app-skeleton "$(APP_DIR)"
|
||||
cp Info.plist "$(APP_DIR)/Contents/"
|
||||
cp launcher "$(APP_DIR)/Contents/MacOS/"
|
||||
# TODO: copy Doom and setup binaries into app dir
|
||||
# TODO: copy other documentation into staging dir
|
||||
|
|
|
@ -1,21 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<!-- This is a temporary Info.plist file that will be removed.
|
||||
It will eventually be generated by configure. -->
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>Chocolate Doom</string>
|
||||
<string>Cocoa Doom</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>launcher</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>Chocolate Doom 1.2.1</string>
|
||||
<string>Cocoa Doom 1.2.1</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>chocolate-doom.icns</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>ChocolateDoom</string>
|
||||
<string>Cocoa Doom</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
30
Info.plist.in
Executable file
30
Info.plist.in
Executable file
|
@ -0,0 +1,30 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>English</string>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>@PACKAGE_NAME@</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>launcher</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>@PACKAGE_STRING@</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>chocolate-doom.icns</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>@PACKAGE_NAME@</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>@PACKAGE_VERSION@</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>@PACKAGE_VERSION@</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
<key>NSMainNibFile</key>
|
||||
<string>launcher</string>
|
||||
</dict>
|
||||
</plist>
|
9
config.make.in
Normal file
9
config.make.in
Normal file
|
@ -0,0 +1,9 @@
|
|||
# File included by the main makefile that contains details
|
||||
# about the package name, generated by configure.
|
||||
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
|
Loading…
Reference in a new issue