5 # install - install a program, script, or datafile
6 # This comes from X11R5; it is not part of GNU.
8 # $XConsortium: install.sh,v 1.2 89/12/18 14:47:22 jim Exp $
10 # This script is compatible with the BSD install script, but was written
15 # set DOITPROG to echo to test this script
17 # Don't use :- since 4.3BSD and earlier shells don't like it.
21 # put in absolute paths if you don't have them in your path; or use env. vars.
25 chmodprog="${CHMODPROG-chmod}"
26 chownprog="${CHOWNPROG-chown}"
27 chgrpprog="${CHGRPPROG-chgrp}"
28 stripprog="${STRIPPROG-strip}"
30 mkdirprog="${MKDIRPROG-mkdir}"
44 while [ x"$1" != x ]; do
50 -m) chmodcmd="$chmodprog $2"
55 -o) chowncmd="$chownprog $2"
60 -g) chgrpcmd="$chgrpprog $2"
65 -s) stripcmd="$stripprog"
69 -t=*) transformarg=`echo $1 | sed 's/-t=//'`
73 -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
81 # this colon is to work around a 386BSD /bin/sh bug
92 echo "install: no input file specified"
100 echo "install: no destination specified"
106 # If destination is a directory, append the input filename; if your system
107 # does not like double slashes in filenames, you may need to add some logic
111 dst="$dst"/`basename $src`
117 # Make a temp file name in the proper directory.
119 ## this sed command emulates the dirname command
120 dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
121 dsttmp=$dstdir/#inst.$$#
123 # Make sure that the destination directory exists.
124 # this part is taken from Noah Friedman's mkinstalldirs script
128 IFS="${IFS-${defaultIFS}}"
131 # Some sh's can't handle IFS=/ for some reason.
133 set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
138 while [ $# -ne 0 ] ; do
139 pathcomp="${pathcomp}${1}"
142 if [ ! -d "${pathcomp}" ] ;
144 $mkdirprog "${pathcomp}"
149 pathcomp="${pathcomp}/"
152 # If we're going to rename the final executable, determine the name now.
154 if [ x"$transformarg" = x ]
156 dstfile=`basename $dst`
158 dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename
161 # don't allow the sed command to completely eliminate the filename
163 if [ x"$dstfile" = x ]
165 dstfile=`basename $dst`
170 # Move or copy the file name to the temp name
172 $doit $instcmd $src $dsttmp
174 # and set any options; do chmod last to preserve setuid bits
176 if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; fi
177 if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; fi
178 if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; fi
179 if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; fi
181 # Now rename the file to the real destination.
183 $doit $rmcmd $dstdir/$dstfile
184 $doit $mvcmd $dsttmp $dstdir/$dstfile