Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / build / package / mac_osx / make-diskimage
blobd07a72983456f6bf7e4d3c5337df6e57ad271b2a
1 #!/bin/sh
2 # ***** BEGIN LICENSE BLOCK *****
3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 # The contents of this file are subject to the Mozilla Public License Version
6 # 1.1 (the "License"); you may not use this file except in compliance with
7 # the License. You may obtain a copy of the License at
8 # http://www.mozilla.org/MPL/
10 # Software distributed under the License is distributed on an "AS IS" basis,
11 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 # for the specific language governing rights and limitations under the
13 # License.
15 # The Original Code is the make-diskimage script.
17 # The Initial Developer of the Original Code is
18 # Netscape Communications Corporation.
19 # Portions created by the Initial Developer are Copyright (C) 2002
20 # the Initial Developer. All Rights Reserved.
22 # Contributor(s):
23 # Brian Ryner <bryner@brianryner.com>
24 # Jean-Jacques Enser <jj@netscape.com>
25 # Arthur Wiebe <artooro@gmail.com>
26 # Mark Mentovai <mark@moxienet.com>
28 # Alternatively, the contents of this file may be used under the terms of
29 # either the GNU General Public License Version 2 or later (the "GPL"), or
30 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31 # in which case the provisions of the GPL or the LGPL are applicable instead
32 # of those above. If you wish to allow use of your version of this file only
33 # under the terms of either the GPL or the LGPL, and not to allow others to
34 # use your version of this file under the terms of the MPL, indicate your
35 # decision by deleting the provisions above and replace them with the notice
36 # and other provisions required by the GPL or the LGPL. If you do not delete
37 # the provisions above, a recipient may use your version of this file under
38 # the terms of any one of the MPL, the GPL or the LGPL.
40 # ***** END LICENSE BLOCK *****
42 # Create a read-only disk image of the contents of a folder
44 # Usage: make-diskimage <image_file>
45 # <src_folder>
46 # <volume_name>
47 # <eula_resource_file>
48 # <.dsstore_file>
49 # <background_image_file>
51 # tip: use '-null-' for <eula-resource-file> if you only want to
52 # provide <.dsstore_file> and <background_image_file>
54 DMG_PATH=$1
55 SRC_FOLDER=$2
56 VOLUME_NAME=$3
58 # optional arguments
59 EULA_RSRC=$4
60 DMG_DSSTORE=$5
61 DMG_BKGND_IMG=$6
63 EXTRA_ARGS=
65 if test -n "$EULA_RSRC" && test "$EULA_RSRC" != "-null-" ; then
66 EXTRA_ARGS="--resource $EULA_RSRC"
69 if test -n "$DMG_DSSTORE" ; then
70 EXTRA_ARGS="$EXTRA_ARGS --copy $DMG_DSSTORE:/.DS_Store"
73 if test -n "$DMG_BKGND_IMG" ; then
74 EXTRA_ARGS="$EXTRA_ARGS --mkdir /.background --copy $DMG_BKGND_IMG:/.background"
77 echo `dirname $0`/pkg-dmg --target "$DMG_PATH" --source "$SRC_FOLDER" \
78 --volname "$VOLUME_NAME" $EXTRA_ARGS
80 `dirname $0`/pkg-dmg --target "$DMG_PATH" --source "$SRC_FOLDER" \
81 --volname "$VOLUME_NAME" $EXTRA_ARGS
83 exit $?