24 lines
391 B
Markdown
24 lines
391 B
Markdown
# Building Manually
|
|
|
|
Refer to [Build Dependencies](build_dependencies.md) for instructions on how to install dependencies.
|
|
|
|
Build and install Ground:
|
|
|
|
```sh
|
|
git clone https://chookspace.com/ground/ground
|
|
cd ground
|
|
make
|
|
sudo make install
|
|
cd ..
|
|
```
|
|
|
|
After this, build and install Solstice:
|
|
|
|
```sh
|
|
git clone https://chookspace.com/solstice/solstice
|
|
cd solstice
|
|
make
|
|
sudo make install
|
|
cd ..
|
|
```
|