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

Side by Side Diff: build/mac/build_app_dmg

Issue 113152: Add a simple dmg script to the mac build dir to build a dmg out of the app.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 7 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Name: svn:executable
+ *
Name: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #!/bin/sh
2
3 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 # Normally you don't want to build a dmg out of a debug build.
8 if [ "${CONFIGURATION}" != "Release" ] ; then
9 echo "warning: building dmg in non-release mode" >&2
10 fi
11
12 # Make sure we got the branding passed to us
13 if [ $# -ne 1 ]; then
14 echo "error: missing branding as an argument" >&2
15 exit 1
16 fi
17
18 # fail on anything from here out
19 set -ex
Mark Mentovai 2009/05/08 20:18:22 Maybe don't set -x 'til you call pkg-dmg. We don'
20
21 TOP="${SRCROOT}/.."
22 PKG_DMG="${TOP}/build/mac/pkg-dmg"
23
24 APP_NAME=$1
25 SRC_APP_PATH="${BUILT_PRODUCTS_DIR}/${APP_NAME}.app"
26 VOL_NAME="${APP_NAME}"
27 # Do we want a svn version in the DMG name?
28 DMG_NAME="${APP_NAME}.dmg"
29 DST_DMG_PATH="${BUILT_PRODUCTS_DIR}/${DMG_NAME}"
30
31 # Call the real working
32 "${PKG_DMG}" --source /var/empty \
33 --target "${DST_DMG_PATH}" \
34 --format UDBZ \
35 --volname "${VOL_NAME}" \
36 --tempdir "${TEMP_DIR}" \
37 --copy "${SRC_APP_PATH}/:/${APP_NAME}.app/"
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | chrome/chrome.gyp » ('j') | chrome/chrome.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698