More goof-proofing of the install

This commit is contained in:
Neale Pickett 2020-11-17 15:48:04 -07:00
parent 2ee4de6fa1
commit 23cd09d537
1 changed files with 14 additions and 11 deletions

View File

@ -17,29 +17,32 @@ Forks are encouraged,
please let me know if you make one.
How To Build
How To Build And Install
============
## From Source, System-Wide Install
Ubuntu
-------
sudo apt install build-essential
curl -L https://github.com/dirtbags/fluffy/archive/master.tar.gz | tar xzvf -
cd fluffy-master
make
sudo make DESTDIR=/usr/local install
### Uninstalling
sudo make DESTDIR=/usr/local uninstall
## From Source, Install Only For Yourself
Red Hat
-------
yum groupinstall 'Development Tools'
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
make
sudo make DESTDIR=/usr/local install
### Uninstalling
make DESTDIR=$HOME uninstall
How To Uninstall
============
make DESTDIR=/usr/local uninstall
Forks and Packages