mirror of https://github.com/Hilbis/Hilbish
docs: add additional build instructions
parent
3a673e2a9b
commit
f31c1296ae
14
README.md
14
README.md
|
@ -51,15 +51,27 @@ sudo zypper install readline-devel
|
||||||
```
|
```
|
||||||
|
|
||||||
### Install
|
### Install
|
||||||
|
First, clone Hilbish:
|
||||||
```sh
|
```sh
|
||||||
git clone --recursive https://github.com/Hilbis/Hilbish
|
git clone --recursive https://github.com/Hilbis/Hilbish
|
||||||
cd Hilbish
|
cd Hilbish
|
||||||
make build
|
```
|
||||||
|
|
||||||
|
Then build and install:
|
||||||
|
```sh
|
||||||
|
make dev
|
||||||
sudo make install
|
sudo make install
|
||||||
# Or
|
# Or
|
||||||
sudo make all
|
sudo make all
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Or, if you want the latest stable release:
|
||||||
|
```
|
||||||
|
git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
|
||||||
|
make build
|
||||||
|
sudo make install
|
||||||
|
```
|
||||||
|
|
||||||
Alternatively, if you use Arch Linux, you can compile Hilbish with an **(unofficial)** AUR package:
|
Alternatively, if you use Arch Linux, you can compile Hilbish with an **(unofficial)** AUR package:
|
||||||
```sh
|
```sh
|
||||||
yay -S hilbish
|
yay -S hilbish
|
||||||
|
|
Loading…
Reference in New Issue