14 lines
197 B
Bash
Raw Normal View History

#!/bin/sh -e
2021-02-13 19:28:59 +03:00
git clone https://github.com/phenax/bsp-layout.git
cd bsp-layout
2021-02-13 19:28:59 +03:00
if command -v doas >/dev/null
then
doas -- make PREFIX=/usr install
else
sudo make PREFIX=/usr install
fi
cd ..