cp2k/tools/docker/scripts/install_doxygen.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
208 B
Bash
Raw Permalink Normal View History

2020-09-01 00:40:07 +02:00
#!/bin/bash -e
# author: Ole Schuett
# install Ubuntu packages
apt-get update -qq
apt-get install -qq --no-install-recommends \
doxygen \
graphviz \
make \
python3
2020-09-01 00:40:07 +02:00
rm -rf /var/lib/apt/lists/*
#EOF