GAUCHE-INSTALL(1) | Gauche Commands | GAUCHE-INSTALL(1) |
gauche-install - install files and set attributes
1)* gauche-install [OPTION...]
FILE DEST
2)* gauche-install [OPTION...] FILE...
DIRECTORY
3)* gauche-install -d [OPTION...]
DIRECTORY...
4) gauche-install -T DIRECTORY [OPTION...]
FILE...
5) gauche-install -U DIRECTORY [OPTION...]
FILE...
gauche-install is a program to install and remove files. On installation it allows to set ownership and permissions. This command is upward compatible with BSD install(1) and can be used as a drop-in replacement of it. Notably, 1st, 2nd and 3rd command-line format above are compatible with BSD install.
This command is provided mainly for Gauche's extension packages to have simpler installation and configuration process. Being certain that gauche-install is available, those packages don't need to worry about subtle differences between various install(1) commands.
The first format copies FILE on the file or in the directory named by DEST. The second format copies FILE ... into the directory DIRECTORY.
The third format ensures DIRECTORY exists. If it doesn't, the command creates the path to the DIRECTORY , including any intermediate ones.
The fourth format installing FILE ... to the DIRECTORY. It is more convenient than the first and second formats in the following regards:
gauche-install -T /usr/share/foo main conf/x conf/y
Giving -p option suppresses this behavior and strips any directory prefix like the second format. The following command line installs '/usr/share/foo/main', '/usr/share/foo/x' and '/usr/share/foo/y'.
gauche-install -T /usr/share/foo -p main conf/x conf/y
The fifth format removes FILE ... in the DIRECTORY. Irrelevant options are ignored, so it is handy to uninstall files just by chaning -T in the fourth format to -U.
-C, --canonical-suffix
-d, --directory
-g, --group=GROUP
-h, --help
-m, --mode=MODE
-n, --dry-run
-o, --owner=OWNER
-p, --strip-prefix=PREFIX
--shebang=PATH
-S, --srcdir=directory
-T, --target=directory
-U, --uninstall=directory
-v, --verbose
gauche-install exits with status 0 on success.
The program will be documented fully by the Gauche Developers´ Reference available via the info(1) system.
Shiro Kawai <shiro@acm.org>
Jens Thiele <karme@karme.de>
Copyright © 2010 Jens Thiele
Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty.
Gauche 0.9.10 |