[Hdrflow-svn] SF.net SVN: hdrflow: [160] trunk
Status: Pre-Alpha
Brought to you by:
glslang
From: <gl...@us...> - 2007-06-24 18:20:52
|
Revision: 160 http://hdrflow.svn.sourceforge.net/hdrflow/?rev=160&view=rev Author: glslang Date: 2007-06-24 11:20:51 -0700 (Sun, 24 Jun 2007) Log Message: ----------- +distibution script fixes and updates Modified Paths: -------------- trunk/HDRFlow.pmproj trunk/HDRFlowFramework.pmproj trunk/app/HDRFlow/English.lproj/InfoPlist.strings trunk/app/HDRFlow/Info.plist trunk/unity.sh Added Paths: ----------- trunk/HDRFlowApp.pmproj Modified: trunk/HDRFlow.pmproj =================================================================== (Binary files differ) Added: trunk/HDRFlowApp.pmproj =================================================================== (Binary files differ) Property changes on: trunk/HDRFlowApp.pmproj ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/HDRFlowFramework.pmproj =================================================================== (Binary files differ) Modified: trunk/app/HDRFlow/English.lproj/InfoPlist.strings =================================================================== (Binary files differ) Modified: trunk/app/HDRFlow/Info.plist =================================================================== --- trunk/app/HDRFlow/Info.plist 2007-06-24 16:43:23 UTC (rev 159) +++ trunk/app/HDRFlow/Info.plist 2007-06-24 18:20:51 UTC (rev 160) @@ -9,7 +9,7 @@ <key>CFBundleIconFile</key> <string></string> <key>CFBundleIdentifier</key> - <string>com.yourcompany.HDRFlow</string> + <string>com.cryogenicgraphics.hdrflow</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> @@ -17,9 +17,9 @@ <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleSignature</key> - <string>????</string> + <string>HDRF</string> <key>CFBundleVersion</key> - <string>1.0</string> + <string>0.1.0</string> <key>NSMainNibFile</key> <string>MainMenu</string> <key>NSPrincipalClass</key> Modified: trunk/unity.sh =================================================================== --- trunk/unity.sh 2007-06-24 16:43:23 UTC (rev 159) +++ trunk/unity.sh 2007-06-24 18:20:51 UTC (rev 160) @@ -333,6 +333,11 @@ echo "not implemented" } +make_app( ) +{ + cp -R ./app/HDRFlow/build/Release/HDRFlow.app . +} + make_pkg_installer( ) { /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker -build -proj HDRFlowFramework.pmproj -p HDRFlowFramework.pkg @@ -354,14 +359,18 @@ then echo " Building Umbrella Framework..." echo -n " HDRFlow..." make_umbrella_framework - check_status $? - - if [ "$build_installer -eq 1 ] - then echo " Building packages..." - make_pkg_installer - check_status $? - fi + check_status $? fi + + echo -n " HDRFlow application..." + make_app + check_status $? + + if [ "$build_installer" -eq 1 ] + then echo " Building packages..." + make_pkg_installer + check_status $? + fi fi exit 0 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |