diff options
author | Bradley Taunt <bt@btxx.org> | 2024-01-17 19:44:16 -0500 |
---|---|---|
committer | Bradley Taunt <bt@btxx.org> | 2024-01-17 19:44:16 -0500 |
commit | c47aa4c4279beb700ec18c83fcf74aafc77d76a4 (patch) | |
tree | 76692ddf485c4453b366ce8df41e35c879cac9d3 /install-dependencies.sh |
Initial commit to cgit and place all suckless programs within installer
Diffstat (limited to 'install-dependencies.sh')
-rwxr-xr-x | install-dependencies.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/install-dependencies.sh b/install-dependencies.sh new file mode 100755 index 0000000..d1d7269 --- /dev/null +++ b/install-dependencies.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +if [ "$EUID" -ne 0 ] + then echo "The script has to be run as root." + exit +fi + +echo "This script is designed for FreeBSD and it will not work with in any other OS" +echo "Installing dependencies listed in dependencies.txt..." + +sed -e 's/#.*$//' -e '/^$/d' dependencies.txt | while read p; do + echo "Running pkg install $p" + pkg install -y $p +done |