|
From: <pst...@us...> - 2013-10-18 19:24:09
|
Revision: 1035
http://sourceforge.net/p/jazzplusplus/code/1035
Author: pstieber
Date: 2013-10-18 19:24:07 +0000 (Fri, 18 Oct 2013)
Log Message:
-----------
Added a information property list file template.
Modified Paths:
--------------
trunk/jazz/Makefile.am
trunk/jazz/configure.ac
Added Paths:
-----------
trunk/jazz/Info.plist.in
Added: trunk/jazz/Info.plist.in
===================================================================
--- trunk/jazz/Info.plist.in (rev 0)
+++ trunk/jazz/Info.plist.in 2013-10-18 19:24:07 UTC (rev 1035)
@@ -0,0 +1,36 @@
+<?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>CFBundleInfoDictionaryVersion</key>
+ <string>6.0</string>
+ <key>CFBundleIdentifier</key>
+ <string>org.dvdstyler.DVDStyler</string>
+ <key>CFBundleDevelopmentRegion</key>
+ <string>English</string>
+ <key>CFBundleExecutable</key>
+ <string>Jazz++</string>
+ <key>CFBundleIconFile</key>
+ <string>jazz.icns</string>
+ <key>CFBundleName</key>
+ <string>Jazz++</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleSignature</key>
+ <string>jazz</string>
+ <key>CFBundleVersion</key>
+ <string>@VERSION@</string>
+ <key>CFBundleShortVersionString</key>
+ <string>@VERSION@</string>
+ <key>CFBundleGetInfoString</key>
+ <string>Jazz++ version @VERSION@, (c) 2013 Pete Stieber</string>
+ <key>CFBundleLongVersionString</key>
+ <string>@VERSION@, (c) 2013 Pete Stieber</string>
+ <key>NSHumanReadableCopyright</key>
+ <string>Copyright 2013 Pete Stieber</string>
+ <key>LSRequiresCarbon</key>
+ <true/>
+ <key>CSResourcesFileMapped</key>
+ <true/>
+</dict>
+</plist>
Modified: trunk/jazz/Makefile.am
===================================================================
--- trunk/jazz/Makefile.am 2013-10-10 20:21:53 UTC (rev 1034)
+++ trunk/jazz/Makefile.am 2013-10-18 19:24:07 UTC (rev 1035)
@@ -1,5 +1,3 @@
-## Process this file with automake to produce Makefile.in
-
ACLOCAL_AMFLAGS=-I m4
SUBDIRS = src conf
@@ -16,3 +14,17 @@
htmldocs:
doxygen jazz.doxy
+
+# New stuff
+Jazz++.app: Info.plist src/jazz
+ -mkdir Jazz++.app
+ -mkdir Jazz++.app/Contents
+ -mkdir Jazz++.app/Contents/MacOS
+ -mkdir Jazz++.app/Contents/Resources
+ -mkdir Jazz++.app/Contents/Resources/English.lproj
+ cp Info.plist Jazz++.app/Contents/
+ echo -n "Jazz++" > Jazz++.app/Contents/PkgInfo
+ cp src/jazz Jazz++.app/Contents/MacOS/Jazz++
+
+libs:
+ dylibbundler -od -b -x ./Jazz++.app/Contents/MacOS/Jazz++ -d ./Jazz++.app/Contents/libs/
Modified: trunk/jazz/configure.ac
===================================================================
--- trunk/jazz/configure.ac 2013-10-10 20:21:53 UTC (rev 1034)
+++ trunk/jazz/configure.ac 2013-10-18 19:24:07 UTC (rev 1035)
@@ -244,6 +244,7 @@
src/HelpFiles/Makefile \
src/HelpFiles/images/Makefile \
conf/Makefile \
+Info.plist
])
AC_OUTPUT
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|