build-all.sh (368B)
1 #!/bin/bash 2 3 REPO_SOURCE=ssh://brgr:/home/shared/git/public-repos 4 5 cd ~/gitRepos 6 7 git clone $REPO_SOURCE/st.git 8 cd st 9 doas make install 10 cd .. 11 12 git clone $REPO_SOURCE/dmenu.git 13 cd dmenu 14 doas make install 15 cd .. 16 17 git clone $REPO_SOURCE/dwm.git 18 cd dwm 19 doas make install 20 cd .. 21 22 PREFIX=/usr/local/bin 23 git clone $REPO_SOURCE/unison.git 24 cd unison 25 make 26 doas make install 27 cd ..