mirror of https://github.com/dirtbags/fluffy.git
Document a systemwide install
This commit is contained in:
parent
1bb3a7e6d0
commit
2ee4de6fa1
24
README.md
24
README.md
|
@ -20,22 +20,24 @@ please let me know if you make one.
|
|||
How To Build
|
||||
============
|
||||
|
||||
## From Source
|
||||
## From Source, System-Wide Install
|
||||
|
||||
curl -L https://github.com/dirtbags/fluffy/archive/master.tar.gz | tar xzvf -
|
||||
cd fluffy-master
|
||||
make DESTDIR=$HOME install
|
||||
sudo make DESTDIR=/usr/local install
|
||||
|
||||
### Uninstalling
|
||||
|
||||
sudo make DESTDIR=/usr/local uninstall
|
||||
|
||||
## From Source, Install Only For Yourself
|
||||
|
||||
curl -L https://github.com/dirtbags/fluffy/archive/master.tar.gz | tar xzvf -
|
||||
cd fluffy-master
|
||||
sudo make DESTDIR=$HOME install
|
||||
PATH=$HOME/bin:$PATH
|
||||
|
||||
On an Ubuntu system,
|
||||
you may need to log out, and log back in,
|
||||
before the utilities work in all terminals.
|
||||
|
||||
On a non-Ubuntu system,
|
||||
you may need to edit your `.bashrc` to add `$HOME/bin` to your `PATH`
|
||||
environment variable.
|
||||
|
||||
## Uninstalling
|
||||
### Uninstalling
|
||||
|
||||
make DESTDIR=$HOME uninstall
|
||||
|
||||
|
|
Loading…
Reference in New Issue