You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# $1: program name, $2: package name
|
|
|
|
check_dep_bin() {
|
|
|
|
if ! type "$1" >/dev/null 2>&1; then
|
|
|
|
echo "Binary '$1' not found in path, please install $2."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
check_dep_bin mscgen mscgen
|
|
|
|
check_dep_bin xsltproc libxslt
|
|
|
|
check_dep_bin a2x asciidoc
|
|
|
|
check_dep_bin asciidoc asciidoc
|
|
|
|
check_dep_bin dblatex dblatex
|
|
|
|
check_dep_bin packetdiag3 python3-nwdiag
|
|
|
|
check_dep_bin dot graphviz
|
|
|
|
check_dep_bin inkscape inkscape
|
|
|
|
|
|
|
|
echo "All dependencies installed!"
|