summaryrefslogtreecommitdiff
path: root/share/spack/qa/check_dependencies
blob: cbcda0ce0f3fb542defda327341c1abcbb96d808 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env bash
#
# Description:
#     Check to see if dependencies are installed.
#     If not, warn the user and tell them how to
#     install these dependencies.
#
# Usage:
#     check-deps <dep> ...
#
# Options:
#     One or more dependencies. Must use name of binary.

for dep in "$@"; do
    if ! which $dep &> /dev/null; then
        # sphinx-build comes from sphinx
        package=$(echo $dep | cut -d - -f 1)

        cat << EOF
ERROR: $package is required to run this script.

To install with Spack, run:
    $ spack install py-$package
or, to install with pip, run:
    $ pip install $package
Then add the bin directory to your PATH.
EOF
        exit 1
    fi
done

echo "Dependencies found."