Created Building on Linux (markdown)

Adrian Lucrèce Céleste 2018-11-08 20:32:43 -05:00
parent 9265d578dd
commit d3e4364010
1 changed files with 15 additions and 0 deletions

15
Building-on-Linux.md Normal file

@ -0,0 +1,15 @@
---
## Ubuntu/Debian/Raspbian: Build from source
```
sudo apt update && sudo apt upgrade
sudo apt install git cmake make xorg-dev g++ libcurl4-openssl-dev \
libavahi-compat-libdnssd-dev libssl-dev libx11-dev \
libqt4-dev qtbase5-dev
git clone git@github.com:debauchee/barrier.git
cd barrier
./clean_build.sh
cd build
sudo make install # installs to /usr/local/
```