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
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.
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>
47 # <eula_resource_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>
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