4 # install - install a program, script, or datafile
5 # This comes from X11R5; it is not part of GNU.
7 # $XConsortium: install.sh,v 1.2 89/12/18 14:47:22 jim Exp $
9 # This script is compatible with the BSD install script, but was written
14 # set DOITPROG to echo to test this script
16 # Don't use :- since 4.3BSD and earlier shells don't like it.
20 # put in absolute paths if you don't have them in your path; or use env. vars.
24 chmodprog
="${CHMODPROG-chmod}"
25 chownprog
="${CHOWNPROG-chown}"
26 chgrpprog
="${CHGRPPROG-chgrp}"
27 stripprog
="${STRIPPROG-strip}"
40 while [ x
"$1" != x
]; do
46 -m) chmodcmd
="$chmodprog $2"
51 -o) chowncmd
="$chownprog $2"
56 -g) chgrpcmd
="$chgrpprog $2"
61 -s) stripcmd
="$stripprog"
78 echo "install: no input file specified"
84 echo "install: no destination specified"
89 # If destination is a directory, append the input filename; if your system
90 # does not like double slashes in filenames, you may need to add some logic
94 dst
="$dst"/`basename $src`
97 # Make a temp file name in the proper directory.
100 dsttmp
=$dstdir/#inst.$$#
102 # Move or copy the file name to the temp name
104 $doit $instcmd $src $dsttmp
106 # and set any options; do chmod last to preserve setuid bits
108 if [ x
"$chowncmd" != x
]; then $doit $chowncmd $dsttmp; fi
109 if [ x
"$chgrpcmd" != x
]; then $doit $chgrpcmd $dsttmp; fi
110 if [ x
"$stripcmd" != x
]; then $doit $stripcmd $dsttmp; fi
111 if [ x
"$chmodcmd" != x
]; then $doit $chmodcmd $dsttmp; fi
113 # Now rename the file to the real destination.
116 $doit $mvcmd $dsttmp $dst