-
Notifications
You must be signed in to change notification settings - Fork 12
/
INSTALL
59 lines (42 loc) · 1.49 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
1. Installing from the distribution tar archive or a GitHub clone:
This project uses GNU autotools.
To install the scripts under "/usr/local" (scripts will always go in
the "bin" subdirectory):
./configure
make
make install
Then make sure that "/usr/local/bin" is in your "$PATH".
To install under "$HOME/local":
./configure --prefix="$HOME/local"
make
make install
To install using GNU Stow under "$HOME/local":
./configure --prefix="$HOME/local/stow/shell-toolbox"
make
make install
cd "$HOME/local/stow"
stow shell-toolbox
Then make sure that "$HOME/local/bin" is in your "$PATH".
The following files will be installed unless the default
installation paths are modified:
<prefix>
|-- bin
| `-- shell
`-- share
|-- doc
| `-- shell-toolbox
| |-- LICENSE
| |-- NEWS
| |-- README
| `-- shell.txt
`-- man
`-- man1
`-- shell.1
Caveat: If you run "make distclean", the generated manuals, which
are part of the distribution sources, will be removed. These won't
be rebuilt unless you have mandoc(1) installed.
2. Installing on FreeBSD:
The devel/shell-toolbox port:
cd /usr/ports/devel/shell-toolbox/ && make install clean
The shell-toolbox package:
pkg install shell-toolbox