mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 06:52:36 +00:00
21 lines
497 B
Bash
Executable file
21 lines
497 B
Bash
Executable file
#!/bin/bash
|
|
set -eu -o pipefail
|
|
|
|
case "$DISTRI" in
|
|
"ubuntu")
|
|
;& # fallthrough
|
|
"debian")
|
|
|
|
apt-get -y install nasm libssl-dev libpcap-dev subversion curl \
|
|
autoconf libtool libc++-dev llvm-3.3-dev clang-3.3 unzip
|
|
;;
|
|
"archlinux")
|
|
echo "archlinux is currently not supported!"
|
|
echo "Update install-root and do a pull-request ;)"
|
|
exit 1
|
|
;;
|
|
*)
|
|
echo "Unsupported distribution: ''"
|
|
exit 1
|
|
;;
|
|
esac
|