blob: 0ec27bcd488da5cad6ead13d70accbdbc40d31ef [file] [log] [blame]
Richard Henderson252b5131999-05-03 07:29:111#!/bin/sh
2#
3# install - install a program, script, or datafile
Richard Henderson252b5131999-05-03 07:29:114#
Daniel Jacobowitzee949b52003-08-29 00:13:095# This originates from X11R5 (mit/util/scripts/install.sh), which was
6# later released in X11R6 (xc/config/util/install.sh) with the
7# following copyright and license.
Richard Henderson252b5131999-05-03 07:29:118#
Daniel Jacobowitzee949b52003-08-29 00:13:099# Copyright (C) 1994 X Consortium
10#
11# Permission is hereby granted, free of charge, to any person obtaining a copy
12# of this software and associated documentation files (the "Software"), to
13# deal in the Software without restriction, including without limitation the
14# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
15# sell copies of the Software, and to permit persons to whom the Software is
16# furnished to do so, subject to the following conditions:
17#
18# The above copyright notice and this permission notice shall be included in
19# all copies or substantial portions of the Software.
20#
21# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
25# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC-
26# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27#
28# Except as contained in this notice, the name of the X Consortium shall not
29# be used in advertising or otherwise to promote the sale, use or other deal-
30# ings in this Software without prior written authorization from the X Consor-
31# tium.
32#
33#
34# FSF changes to this file are in the public domain.
Richard Henderson252b5131999-05-03 07:29:1135#
36# Calling this script install-sh is preferred over install.sh, to prevent
37# `make' implicit rules from creating a file called install from it
38# when there is no Makefile.
39#
40# This script is compatible with the BSD install script, but was written
41# from scratch. It can only install one file at a time, a restriction
42# shared with many OS's install programs.
43
44
45# set DOITPROG to echo to test this script
46
47# Don't use :- since 4.3BSD and earlier shells don't like it.
48doit="${DOITPROG-}"
49
50
51# put in absolute paths if you don't have them in your path; or use env. vars.
52
53mvprog="${MVPROG-mv}"
54cpprog="${CPPROG-cp}"
55chmodprog="${CHMODPROG-chmod}"
56chownprog="${CHOWNPROG-chown}"
57chgrpprog="${CHGRPPROG-chgrp}"
58stripprog="${STRIPPROG-strip}"
59rmprog="${RMPROG-rm}"
60mkdirprog="${MKDIRPROG-mkdir}"
61
62transformbasename=""
63transform_arg=""
64instcmd="$mvprog"
65chmodcmd="$chmodprog 0755"
66chowncmd=""
67chgrpcmd=""
68stripcmd=""
69rmcmd="$rmprog -f"
70mvcmd="$mvprog"
71src=""
72dst=""
73dir_arg=""
74
75while [ x"$1" != x ]; do
76 case $1 in
Daniel Jacobowitzee949b52003-08-29 00:13:0977-c) instcmd=$cpprog
Richard Henderson252b5131999-05-03 07:29:1178 shift
79 continue;;
80
81-d) dir_arg=true
82 shift
83 continue;;
84
85-m) chmodcmd="$chmodprog $2"
86 shift
87 shift
88 continue;;
89
90-o) chowncmd="$chownprog $2"
91 shift
92 shift
93 continue;;
94
95-g) chgrpcmd="$chgrpprog $2"
96 shift
97 shift
98 continue;;
99
Daniel Jacobowitzee949b52003-08-29 00:13:09100-s) stripcmd=$stripprog
Richard Henderson252b5131999-05-03 07:29:11101 shift
102 continue;;
103
104-t=*) transformarg=`echo $1 | sed 's/-t=//'`
105 shift
106 continue;;
107
108-b=*) transformbasename=`echo $1 | sed 's/-b=//'`
109 shift
110 continue;;
111
112*) if [ x"$src" = x ]
113 then
114src=$1
115 else
116# this colon is to work around a 386BSD /bin/sh bug
117:
118dst=$1
119 fi
120 shift
121 continue;;
122 esac
123done
124
125if [ x"$src" = x ]
126then
Daniel Jacobowitzee949b52003-08-29 00:13:09127echo "$0: no input file specified" >&2
Richard Henderson252b5131999-05-03 07:29:11128exit 1
129else
Daniel Jacobowitzee949b52003-08-29 00:13:09130:
Richard Henderson252b5131999-05-03 07:29:11131fi
132
133if [ x"$dir_arg" != x ]; then
134dst=$src
135src=""
Daniel Jacobowitzee949b52003-08-29 00:13:09136
137if [ -d "$dst" ]; then
Richard Henderson252b5131999-05-03 07:29:11138instcmd=:
139chmodcmd=""
140else
Daniel Jacobowitzee949b52003-08-29 00:13:09141instcmd=$mkdirprog
Richard Henderson252b5131999-05-03 07:29:11142fi
143else
144
145# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
Daniel Jacobowitzee949b52003-08-29 00:13:09146# might cause directories to be created, which would be especially bad
Richard Henderson252b5131999-05-03 07:29:11147# if $src (and thus $dsttmp) contains '*'.
148
Daniel Jacobowitzee949b52003-08-29 00:13:09149if [ -f "$src" ] || [ -d "$src" ]
Richard Henderson252b5131999-05-03 07:29:11150then
Daniel Jacobowitzee949b52003-08-29 00:13:09151:
Richard Henderson252b5131999-05-03 07:29:11152else
Daniel Jacobowitzee949b52003-08-29 00:13:09153echo "$0: $src does not exist" >&2
Richard Henderson252b5131999-05-03 07:29:11154exit 1
155fi
Daniel Jacobowitzee949b52003-08-29 00:13:09156
Richard Henderson252b5131999-05-03 07:29:11157if [ x"$dst" = x ]
158then
Daniel Jacobowitzee949b52003-08-29 00:13:09159echo "$0: no destination specified" >&2
Richard Henderson252b5131999-05-03 07:29:11160exit 1
161else
Daniel Jacobowitzee949b52003-08-29 00:13:09162:
Richard Henderson252b5131999-05-03 07:29:11163fi
164
165# If destination is a directory, append the input filename; if your system
166# does not like double slashes in filenames, you may need to add some logic
167
Daniel Jacobowitzee949b52003-08-29 00:13:09168if [ -d "$dst" ]
Richard Henderson252b5131999-05-03 07:29:11169then
Daniel Jacobowitzee949b52003-08-29 00:13:09170dst=$dst/`basename "$src"`
Richard Henderson252b5131999-05-03 07:29:11171else
Daniel Jacobowitzee949b52003-08-29 00:13:09172:
Richard Henderson252b5131999-05-03 07:29:11173fi
174fi
175
176## this sed command emulates the dirname command
Daniel Jacobowitzee949b52003-08-29 00:13:09177dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
Richard Henderson252b5131999-05-03 07:29:11178
179# Make sure that the destination directory exists.
180# this part is taken from Noah Friedman's mkinstalldirs script
181
182# Skip lots of stat calls in the usual case.
183if [ ! -d "$dstdir" ]; then
Daniel Jacobowitzee949b52003-08-29 00:13:09184defaultIFS='
185'
186IFS="${IFS-$defaultIFS}"
Richard Henderson252b5131999-05-03 07:29:11187
Daniel Jacobowitzee949b52003-08-29 00:13:09188oIFS=$IFS
Richard Henderson252b5131999-05-03 07:29:11189# Some sh's can't handle IFS=/ for some reason.
190IFS='%'
Daniel Jacobowitzee949b52003-08-29 00:13:09191set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
192IFS=$oIFS
Richard Henderson252b5131999-05-03 07:29:11193
194pathcomp=''
195
196while [ $# -ne 0 ] ; do
Daniel Jacobowitzee949b52003-08-29 00:13:09197pathcomp=$pathcomp$1
Richard Henderson252b5131999-05-03 07:29:11198shift
199
Daniel Jacobowitzee949b52003-08-29 00:13:09200if [ ! -d "$pathcomp" ] ;
Richard Henderson252b5131999-05-03 07:29:11201 then
Daniel Jacobowitzee949b52003-08-29 00:13:09202$mkdirprog "$pathcomp"
Richard Henderson252b5131999-05-03 07:29:11203else
Daniel Jacobowitzee949b52003-08-29 00:13:09204:
Richard Henderson252b5131999-05-03 07:29:11205fi
206
Daniel Jacobowitzee949b52003-08-29 00:13:09207pathcomp=$pathcomp/
Richard Henderson252b5131999-05-03 07:29:11208done
209fi
210
211if [ x"$dir_arg" != x ]
212then
Daniel Jacobowitzee949b52003-08-29 00:13:09213$doit $instcmd "$dst" &&
Richard Henderson252b5131999-05-03 07:29:11214
Daniel Jacobowitzee949b52003-08-29 00:13:09215if [ x"$chowncmd" != x ]; then $doit $chowncmd "$dst"; else : ; fi &&
216if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd "$dst"; else : ; fi &&
217if [ x"$stripcmd" != x ]; then $doit $stripcmd "$dst"; else : ; fi &&
218if [ x"$chmodcmd" != x ]; then $doit $chmodcmd "$dst"; else : ; fi
Richard Henderson252b5131999-05-03 07:29:11219else
220
221# If we're going to rename the final executable, determine the name now.
222
Daniel Jacobowitzee949b52003-08-29 00:13:09223if [ x"$transformarg" = x ]
Richard Henderson252b5131999-05-03 07:29:11224then
Daniel Jacobowitzee949b52003-08-29 00:13:09225dstfile=`basename "$dst"`
Richard Henderson252b5131999-05-03 07:29:11226else
Daniel Jacobowitzee949b52003-08-29 00:13:09227dstfile=`basename "$dst" $transformbasename |
Richard Henderson252b5131999-05-03 07:29:11228sed $transformarg`$transformbasename
229fi
230
231# don't allow the sed command to completely eliminate the filename
232
Daniel Jacobowitzee949b52003-08-29 00:13:09233if [ x"$dstfile" = x ]
Richard Henderson252b5131999-05-03 07:29:11234then
Daniel Jacobowitzee949b52003-08-29 00:13:09235dstfile=`basename "$dst"`
Richard Henderson252b5131999-05-03 07:29:11236else
Daniel Jacobowitzee949b52003-08-29 00:13:09237:
Richard Henderson252b5131999-05-03 07:29:11238fi
239
Daniel Jacobowitzee949b52003-08-29 00:13:09240# Make a couple of temp file names in the proper directory.
Richard Henderson252b5131999-05-03 07:29:11241
242dsttmp=$dstdir/#inst.$$#
Daniel Jacobowitzee949b52003-08-29 00:13:09243rmtmp=$dstdir/#rm.$$#
244
245# Trap to clean up temp files at exit.
246
247trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0
248trap '(exit $?); exit' 1 2 13 15
Richard Henderson252b5131999-05-03 07:29:11249
250# Move or copy the file name to the temp name
251
Daniel Jacobowitzee949b52003-08-29 00:13:09252$doit $instcmd "$src" "$dsttmp" &&
Richard Henderson252b5131999-05-03 07:29:11253
254# and set any options; do chmod last to preserve setuid bits
255
256# If any of these fail, we abort the whole thing. If we want to
257# ignore errors from any of these, just make sure not to ignore
258# errors from the above "$doit $instcmd $src $dsttmp" command.
259
Daniel Jacobowitzee949b52003-08-29 00:13:09260if [ x"$chowncmd" != x ]; then $doit $chowncmd "$dsttmp"; else :;fi &&
261if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd "$dsttmp"; else :;fi &&
262if [ x"$stripcmd" != x ]; then $doit $stripcmd "$dsttmp"; else :;fi &&
263if [ x"$chmodcmd" != x ]; then $doit $chmodcmd "$dsttmp"; else :;fi &&
264
265# Now remove or move aside any old file at destination location. We try this
266# two ways since rm can't unlink itself on some systems and the destination
267# file might be busy for other reasons. In this case, the final cleanup
268# might fail but the new file should still install successfully.
269
270{
271if [ -f "$dstdir/$dstfile" ]
272then
273$doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null ||
274$doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null ||
275{
276 echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2
277 (exit 1); exit
278}
279else
280:
281fi
282} &&
Richard Henderson252b5131999-05-03 07:29:11283
284# Now rename the file to the real destination.
285
Daniel Jacobowitzee949b52003-08-29 00:13:09286$doit $mvcmd "$dsttmp" "$dstdir/$dstfile"
Richard Henderson252b5131999-05-03 07:29:11287
288fi &&
289
Daniel Jacobowitzee949b52003-08-29 00:13:09290# The final little trick to "correctly" pass the exit status to the exit trap.
Richard Henderson252b5131999-05-03 07:29:11291
Daniel Jacobowitzee949b52003-08-29 00:13:09292{
293(exit 0); exit
294}