install-sh revision 1.1 1 1.1 macallan #!/bin/sh
2 1.1 macallan # install - install a program, script, or datafile
3 1.1 macallan
4 1.1 macallan scriptversion=2005-05-14.22
5 1.1 macallan
6 1.1 macallan # This originates from X11R5 (mit/util/scripts/install.sh), which was
7 1.1 macallan # later released in X11R6 (xc/config/util/install.sh) with the
8 1.1 macallan # following copyright and license.
9 1.1 macallan #
10 1.1 macallan # Copyright (C) 1994 X Consortium
11 1.1 macallan #
12 1.1 macallan # Permission is hereby granted, free of charge, to any person obtaining a copy
13 1.1 macallan # of this software and associated documentation files (the "Software"), to
14 1.1 macallan # deal in the Software without restriction, including without limitation the
15 1.1 macallan # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
16 1.1 macallan # sell copies of the Software, and to permit persons to whom the Software is
17 1.1 macallan # furnished to do so, subject to the following conditions:
18 1.1 macallan #
19 1.1 macallan # The above copyright notice and this permission notice shall be included in
20 1.1 macallan # all copies or substantial portions of the Software.
21 1.1 macallan #
22 1.1 macallan # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 1.1 macallan # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 1.1 macallan # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 1.1 macallan # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
26 1.1 macallan # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
27 1.1 macallan # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 1.1 macallan #
29 1.1 macallan # Except as contained in this notice, the name of the X Consortium shall not
30 1.1 macallan # be used in advertising or otherwise to promote the sale, use or other deal-
31 1.1 macallan # ings in this Software without prior written authorization from the X Consor-
32 1.1 macallan # tium.
33 1.1 macallan #
34 1.1 macallan #
35 1.1 macallan # FSF changes to this file are in the public domain.
36 1.1 macallan #
37 1.1 macallan # Calling this script install-sh is preferred over install.sh, to prevent
38 1.1 macallan # `make' implicit rules from creating a file called install from it
39 1.1 macallan # when there is no Makefile.
40 1.1 macallan #
41 1.1 macallan # This script is compatible with the BSD install script, but was written
42 1.1 macallan # from scratch. It can only install one file at a time, a restriction
43 1.1 macallan # shared with many OS's install programs.
44 1.1 macallan
45 1.1 macallan # set DOITPROG to echo to test this script
46 1.1 macallan
47 1.1 macallan # Don't use :- since 4.3BSD and earlier shells don't like it.
48 1.1 macallan doit="${DOITPROG-}"
49 1.1 macallan
50 1.1 macallan # put in absolute paths if you don't have them in your path; or use env. vars.
51 1.1 macallan
52 1.1 macallan mvprog="${MVPROG-mv}"
53 1.1 macallan cpprog="${CPPROG-cp}"
54 1.1 macallan chmodprog="${CHMODPROG-chmod}"
55 1.1 macallan chownprog="${CHOWNPROG-chown}"
56 1.1 macallan chgrpprog="${CHGRPPROG-chgrp}"
57 1.1 macallan stripprog="${STRIPPROG-strip}"
58 1.1 macallan rmprog="${RMPROG-rm}"
59 1.1 macallan mkdirprog="${MKDIRPROG-mkdir}"
60 1.1 macallan
61 1.1 macallan chmodcmd="$chmodprog 0755"
62 1.1 macallan chowncmd=
63 1.1 macallan chgrpcmd=
64 1.1 macallan stripcmd=
65 1.1 macallan rmcmd="$rmprog -f"
66 1.1 macallan mvcmd="$mvprog"
67 1.1 macallan src=
68 1.1 macallan dst=
69 1.1 macallan dir_arg=
70 1.1 macallan dstarg=
71 1.1 macallan no_target_directory=
72 1.1 macallan
73 1.1 macallan usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
74 1.1 macallan or: $0 [OPTION]... SRCFILES... DIRECTORY
75 1.1 macallan or: $0 [OPTION]... -t DIRECTORY SRCFILES...
76 1.1 macallan or: $0 [OPTION]... -d DIRECTORIES...
77 1.1 macallan
78 1.1 macallan In the 1st form, copy SRCFILE to DSTFILE.
79 1.1 macallan In the 2nd and 3rd, copy all SRCFILES to DIRECTORY.
80 1.1 macallan In the 4th, create DIRECTORIES.
81 1.1 macallan
82 1.1 macallan Options:
83 1.1 macallan -c (ignored)
84 1.1 macallan -d create directories instead of installing files.
85 1.1 macallan -g GROUP $chgrpprog installed files to GROUP.
86 1.1 macallan -m MODE $chmodprog installed files to MODE.
87 1.1 macallan -o USER $chownprog installed files to USER.
88 1.1 macallan -s $stripprog installed files.
89 1.1 macallan -t DIRECTORY install into DIRECTORY.
90 1.1 macallan -T report an error if DSTFILE is a directory.
91 1.1 macallan --help display this help and exit.
92 1.1 macallan --version display version info and exit.
93 1.1 macallan
94 1.1 macallan Environment variables override the default commands:
95 1.1 macallan CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG
96 1.1 macallan "
97 1.1 macallan
98 1.1 macallan while test -n "$1"; do
99 1.1 macallan case $1 in
100 1.1 macallan -c) shift
101 1.1 macallan continue;;
102 1.1 macallan
103 1.1 macallan -d) dir_arg=true
104 1.1 macallan shift
105 1.1 macallan continue;;
106 1.1 macallan
107 1.1 macallan -g) chgrpcmd="$chgrpprog $2"
108 1.1 macallan shift
109 1.1 macallan shift
110 1.1 macallan continue;;
111 1.1 macallan
112 1.1 macallan --help) echo "$usage"; exit $?;;
113 1.1 macallan
114 1.1 macallan -m) chmodcmd="$chmodprog $2"
115 1.1 macallan shift
116 1.1 macallan shift
117 1.1 macallan continue;;
118 1.1 macallan
119 1.1 macallan -o) chowncmd="$chownprog $2"
120 1.1 macallan shift
121 1.1 macallan shift
122 1.1 macallan continue;;
123 1.1 macallan
124 1.1 macallan -s) stripcmd=$stripprog
125 1.1 macallan shift
126 1.1 macallan continue;;
127 1.1 macallan
128 1.1 macallan -t) dstarg=$2
129 1.1 macallan shift
130 1.1 macallan shift
131 1.1 macallan continue;;
132 1.1 macallan
133 1.1 macallan -T) no_target_directory=true
134 1.1 macallan shift
135 1.1 macallan continue;;
136 1.1 macallan
137 1.1 macallan --version) echo "$0 $scriptversion"; exit $?;;
138 1.1 macallan
139 1.1 macallan *) # When -d is used, all remaining arguments are directories to create.
140 1.1 macallan # When -t is used, the destination is already specified.
141 1.1 macallan test -n "$dir_arg$dstarg" && break
142 1.1 macallan # Otherwise, the last argument is the destination. Remove it from $@.
143 1.1 macallan for arg
144 1.1 macallan do
145 1.1 macallan if test -n "$dstarg"; then
146 1.1 macallan # $@ is not empty: it contains at least $arg.
147 1.1 macallan set fnord "$@" "$dstarg"
148 1.1 macallan shift # fnord
149 1.1 macallan fi
150 1.1 macallan shift # arg
151 1.1 macallan dstarg=$arg
152 1.1 macallan done
153 1.1 macallan break;;
154 1.1 macallan esac
155 1.1 macallan done
156 1.1 macallan
157 1.1 macallan if test -z "$1"; then
158 1.1 macallan if test -z "$dir_arg"; then
159 1.1 macallan echo "$0: no input file specified." >&2
160 1.1 macallan exit 1
161 1.1 macallan fi
162 1.1 macallan # It's OK to call `install-sh -d' without argument.
163 1.1 macallan # This can happen when creating conditional directories.
164 1.1 macallan exit 0
165 1.1 macallan fi
166 1.1 macallan
167 1.1 macallan for src
168 1.1 macallan do
169 1.1 macallan # Protect names starting with `-'.
170 1.1 macallan case $src in
171 1.1 macallan -*) src=./$src ;;
172 1.1 macallan esac
173 1.1 macallan
174 1.1 macallan if test -n "$dir_arg"; then
175 1.1 macallan dst=$src
176 1.1 macallan src=
177 1.1 macallan
178 1.1 macallan if test -d "$dst"; then
179 1.1 macallan mkdircmd=:
180 1.1 macallan chmodcmd=
181 1.1 macallan else
182 1.1 macallan mkdircmd=$mkdirprog
183 1.1 macallan fi
184 1.1 macallan else
185 1.1 macallan # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
186 1.1 macallan # might cause directories to be created, which would be especially bad
187 1.1 macallan # if $src (and thus $dsttmp) contains '*'.
188 1.1 macallan if test ! -f "$src" && test ! -d "$src"; then
189 1.1 macallan echo "$0: $src does not exist." >&2
190 1.1 macallan exit 1
191 1.1 macallan fi
192 1.1 macallan
193 1.1 macallan if test -z "$dstarg"; then
194 1.1 macallan echo "$0: no destination specified." >&2
195 1.1 macallan exit 1
196 1.1 macallan fi
197 1.1 macallan
198 1.1 macallan dst=$dstarg
199 1.1 macallan # Protect names starting with `-'.
200 1.1 macallan case $dst in
201 1.1 macallan -*) dst=./$dst ;;
202 1.1 macallan esac
203 1.1 macallan
204 1.1 macallan # If destination is a directory, append the input filename; won't work
205 1.1 macallan # if double slashes aren't ignored.
206 1.1 macallan if test -d "$dst"; then
207 1.1 macallan if test -n "$no_target_directory"; then
208 1.1 macallan echo "$0: $dstarg: Is a directory" >&2
209 1.1 macallan exit 1
210 1.1 macallan fi
211 1.1 macallan dst=$dst/`basename "$src"`
212 1.1 macallan fi
213 1.1 macallan fi
214 1.1 macallan
215 1.1 macallan # This sed command emulates the dirname command.
216 1.1 macallan dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
217 1.1 macallan
218 1.1 macallan # Make sure that the destination directory exists.
219 1.1 macallan
220 1.1 macallan # Skip lots of stat calls in the usual case.
221 1.1 macallan if test ! -d "$dstdir"; then
222 1.1 macallan defaultIFS='
223 1.1 macallan '
224 1.1 macallan IFS="${IFS-$defaultIFS}"
225 1.1 macallan
226 1.1 macallan oIFS=$IFS
227 1.1 macallan # Some sh's can't handle IFS=/ for some reason.
228 1.1 macallan IFS='%'
229 1.1 macallan set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
230 1.1 macallan shift
231 1.1 macallan IFS=$oIFS
232 1.1 macallan
233 1.1 macallan pathcomp=
234 1.1 macallan
235 1.1 macallan while test $# -ne 0 ; do
236 1.1 macallan pathcomp=$pathcomp$1
237 1.1 macallan shift
238 1.1 macallan if test ! -d "$pathcomp"; then
239 1.1 macallan $mkdirprog "$pathcomp"
240 1.1 macallan # mkdir can fail with a `File exist' error in case several
241 1.1 macallan # install-sh are creating the directory concurrently. This
242 1.1 macallan # is OK.
243 1.1 macallan test -d "$pathcomp" || exit
244 1.1 macallan fi
245 1.1 macallan pathcomp=$pathcomp/
246 1.1 macallan done
247 1.1 macallan fi
248 1.1 macallan
249 1.1 macallan if test -n "$dir_arg"; then
250 1.1 macallan $doit $mkdircmd "$dst" \
251 1.1 macallan && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \
252 1.1 macallan && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \
253 1.1 macallan && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \
254 1.1 macallan && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; }
255 1.1 macallan
256 1.1 macallan else
257 1.1 macallan dstfile=`basename "$dst"`
258 1.1 macallan
259 1.1 macallan # Make a couple of temp file names in the proper directory.
260 1.1 macallan dsttmp=$dstdir/_inst.$$_
261 1.1 macallan rmtmp=$dstdir/_rm.$$_
262 1.1 macallan
263 1.1 macallan # Trap to clean up those temp files at exit.
264 1.1 macallan trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
265 1.1 macallan trap '(exit $?); exit' 1 2 13 15
266 1.1 macallan
267 1.1 macallan # Copy the file name to the temp name.
268 1.1 macallan $doit $cpprog "$src" "$dsttmp" &&
269 1.1 macallan
270 1.1 macallan # and set any options; do chmod last to preserve setuid bits.
271 1.1 macallan #
272 1.1 macallan # If any of these fail, we abort the whole thing. If we want to
273 1.1 macallan # ignore errors from any of these, just make sure not to ignore
274 1.1 macallan # errors from the above "$doit $cpprog $src $dsttmp" command.
275 1.1 macallan #
276 1.1 macallan { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
277 1.1 macallan && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
278 1.1 macallan && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
279 1.1 macallan && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } &&
280 1.1 macallan
281 1.1 macallan # Now rename the file to the real destination.
282 1.1 macallan { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \
283 1.1 macallan || {
284 1.1 macallan # The rename failed, perhaps because mv can't rename something else
285 1.1 macallan # to itself, or perhaps because mv is so ancient that it does not
286 1.1 macallan # support -f.
287 1.1 macallan
288 1.1 macallan # Now remove or move aside any old file at destination location.
289 1.1 macallan # We try this two ways since rm can't unlink itself on some
290 1.1 macallan # systems and the destination file might be busy for other
291 1.1 macallan # reasons. In this case, the final cleanup might fail but the new
292 1.1 macallan # file should still install successfully.
293 1.1 macallan {
294 1.1 macallan if test -f "$dstdir/$dstfile"; then
295 1.1 macallan $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \
296 1.1 macallan || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \
297 1.1 macallan || {
298 1.1 macallan echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
299 1.1 macallan (exit 1); exit 1
300 1.1 macallan }
301 1.1 macallan else
302 1.1 macallan :
303 1.1 macallan fi
304 1.1 macallan } &&
305 1.1 macallan
306 1.1 macallan # Now rename the file to the real destination.
307 1.1 macallan $doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
308 1.1 macallan }
309 1.1 macallan }
310 1.1 macallan fi || { (exit 1); exit 1; }
311 1.1 macallan done
312 1.1 macallan
313 1.1 macallan # The final little trick to "correctly" pass the exit status to the exit trap.
314 1.1 macallan {
315 1.1 macallan (exit 0); exit 0
316 1.1 macallan }
317 1.1 macallan
318 1.1 macallan # Local variables:
319 1.1 macallan # eval: (add-hook 'write-file-hooks 'time-stamp)
320 1.1 macallan # time-stamp-start: "scriptversion="
321 1.1 macallan # time-stamp-format: "%:y-%02m-%02d.%02H"
322 1.1 macallan # time-stamp-end: "$"
323 1.1 macallan # End:
324