Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(666)

Unified Diff: remoting/host/installer/mac/build.sh

Issue 9958083: Initial version of the Chromoting installer for Mac. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/host/installer/mac/build.sh
===================================================================
--- remoting/host/installer/mac/build.sh (revision 0)
+++ remoting/host/installer/mac/build.sh (working copy)
@@ -0,0 +1,42 @@
+#!/bin/sh
+
Lambros 2012/04/03 00:49:17 Add comment explaining that Icebox needs to be ins
garykac 2012/04/09 19:04:16 We're only building an installer for "Chrome Remot
+PKG_DIR=build
+PKGPROJ_CHROMOTING='Chromoting.packproj'
+PKGPROJ_CHROME_REMOTE_DESKTOP='Chrome Remote Desktop.packproj'
+PKG_CHROMOTING='Chromoting.pkg'
+PKG_CRD='Chrome Remote Desktop.mpkg'
+
+DMG_TEMP=dmg_tmp
+DMG_NAME='Chrome Remote Desktop'
+DMG_DIR="$DMG_TEMP/$DMG_NAME"
+DMG_FILENAME='Chrome Remote Desktop.dmg'
+
+# Clean out previous build.
+rm -rf "$PKG_DIR"
+rm -f "$DMG_FILENAME"
Lambros 2012/04/03 00:49:17 Maybe remove $DMG_TEMP as well, in case a previous
garykac 2012/04/09 19:04:16 Done.
+
+# Copy latest release build.
+# TODO(garykac): Get from proper location.
+HOST_BINARY=PrivilegedHelperTools/org.chromium.chromoting.me2me_host
+cp ../../../../out/Release/remoting_me2me_host ./$HOST_BINARY
+
+# Build the .pkg.
+echo "Building .pkg..."
+freeze "$PKGPROJ_CHROMOTING"
+freeze "$PKGPROJ_CHROME_REMOTE_DESKTOP"
+
+# Create the .dmg.
+echo "Building .dmg..."
+mkdir -p "$DMG_DIR/$PKG_CRD"
+# Copy .mpkg installer.
+ditto "$PKG_DIR/$PKG_CRD" "$DMG_DIR/$PKG_CRD"
+# Copy uninstall script.
+# TODO(garykac): This should be made into a proper App and installed in the
+# Applications directory.
+cp Scripts/uninstall.sh "$DMG_DIR"
+# Copy .keystone_install script to top level of .dmg.
+# Keystone calls this script during upgrades.
+cp Scripts/keystone_install.sh "$DMG_DIR/.keystone_install"
+# Build the .dmg from the directory.
+hdiutil create "$DMG_FILENAME" -srcfolder "$DMG_DIR" -ov -quiet
+rm -rf "$DMG_TEMP"
Property changes on: remoting/host/installer/mac/build.sh
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+LF
\ No newline at end of property

Powered by Google App Engine
This is Rietveld 408576698