-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
319 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ Makefile | |
autom4te.cache | ||
config.log | ||
config.status | ||
local.env | ||
release-checklist.txt | ||
shell-toolbox-*.tar.gz | ||
src/shell |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,60 @@ | ||
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.md | ||
| `-- 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. | ||
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.md | ||
| `-- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.