Changeset 7510
- Timestamp:
- 11/24/06 20:21:57 (5 years ago)
- Location:
- trunk/Bui_Core
- Files:
-
- 4 edited
-
resources/launcher/mac/Info.plist (modified) (2 diffs)
-
resources/packaging/mac/README.txt (modified) (2 diffs)
-
xBuildClient.xml (modified) (3 diffs)
-
xPackaging.mac.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Bui_Core/resources/launcher/mac/Info.plist
r6230 r7510 8 8 <string>APPL</string> 9 9 <key>CFBundleIdentifier</key> 10 <string> fr.SCPlatform.##app.name##</string>10 <string>org.scenariplatform.##app.name##</string> 11 11 <key>CFBundleExecutable</key> 12 12 <string>launcher</string> … … 16 16 <true/> 17 17 <key>CFBundleName</key> 18 <string>##app.name ##</string>18 <string>##app.name(fullName)##</string> 19 19 <key>CFBundleGetInfoString</key> 20 <string>##app.name## version ##app.version## _##app.version.developmentStage##</string>20 <string>##app.name## version ##app.version####app.version.developmentStage##</string> 21 21 <key>CFBundleShortVersionString</key> 22 22 <string>##app.version##</string> 23 23 <key>CFBundleVersion</key> 24 <string>##app.version## _##app.version.developmentStage##</string>24 <string>##app.version####app.version.developmentStage##</string> 25 25 <key>NSHumanReadableCopyright</key> 26 26 <string>##app.name## version ##app.version## ##app.copyright##</string> -
trunk/Bui_Core/resources/packaging/mac/README.txt
r5806 r7510 1 Installation instructions for ##app.name ##1 Installation instructions for ##app.name(fullName)## 2 2 3 3 … … 5 5 No Intel compatible version is available for the moment. 6 6 7 Copy ##app.name ## to wherever you want (/Applications for example).7 Copy ##app.name(fullName)## to wherever you want (/Applications for example). 8 8 9 9 Your done! -
trunk/Bui_Core/xBuildClient.xml
r7483 r7510 104 104 - app.version(developmentStage) 105 105 - pAppName 106 - pAppNameFull 106 107 - pAppId 107 108 - pDestAppLicencesDir : répertoire ou ont été générés les fichiers de licence … … 383 384 <copy file="${corelauncherdir.mac}/Info.plist" tofile="${destapprootdir}/Info.plist${app.dynFileExtension}" encoding="UTF-8" overwrite="true"/> 384 385 <replaceregexp file="${destapprootdir}/Info.plist${app.dynFileExtension}" match="##app.name##" replace="${app.name}" byline="yes"/> 386 <replaceregexp file="${destapprootdir}/Info.plist${app.dynFileExtension}" match="##app.name\(fullName\)##" replace="${app.name(fullName)}" byline="yes"/> 385 387 <replaceregexp file="${destapprootdir}/Info.plist${app.dynFileExtension}" match="##app.profile\(name\)##" replace="${app.profile(name)}" byline="yes"/> 386 388 <replaceregexp file="${destapprootdir}/Info.plist${app.dynFileExtension}" match="##app.version##" replace="${app.version}" byline="yes"/> … … 638 640 - pDestAppLicencesDir : répertoire ou ont été générés les fichiers de licence 639 641 - pAppName 642 - pAppNameFull 640 643 - app.publisher 641 644 - app(url) -
trunk/Bui_Core/xPackaging.mac.xml
r7508 r7510 48 48 A déclarer ds l'appelant: 49 49 - app.name; 50 - app.name(fullName); 50 51 - app.version; 51 52 - app.version(developmentStage); … … 65 66 <mkdir dir="${package.mac.tmpDir}"/> 66 67 <!-- packaging --> 67 <mkdir dir="${package.mac.tmpDir}/${app.name }.app"/>68 <copy todir="${package.mac.tmpDir}/${app.name }.app">68 <mkdir dir="${package.mac.tmpDir}/${app.name(fullName)}.app"/> 69 <copy todir="${package.mac.tmpDir}/${app.name(fullName)}.app"> 69 70 <fileset dir="${destmainappmacdir}" includes="**/**"/> 70 71 </copy> … … 78 79 <fileset dir="${coreMacDir}" includes="**/**"/> 79 80 </copy> 80 <replaceregexp match="##app.name##" replace="${app.name}" flags="g" byline="true"> 81 <fileset dir="${package.mac.tmpDir}" includes="*.txt"/> 82 </replaceregexp> 81 <replaceregexp match="##app.name##" replace="${app.name}" flags="g" byline="true"> 82 <fileset dir="${package.mac.tmpDir}" includes="*.txt"/> 83 </replaceregexp> 84 <replaceregexp match="##app.name\(fullName\)##" replace="${app.name(fullName)}" flags="g" byline="true"> 85 <fileset dir="${package.mac.tmpDir}" includes="*.txt"/> 86 </replaceregexp> 83 87 <replaceregexp match="##app.server\(port\)##" replace="${app.server(port)}" flags="g" byline="true"> 84 88 <fileset dir="${package.mac.tmpDir}" includes="*.txt"/>
Note: See TracChangeset
for help on using the changeset viewer.