mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-26 05:05:16 -04:00
14 lines
208 B
Bash
Executable file
14 lines
208 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
# author: Ole Schuett
|
|
|
|
# install Ubuntu packages
|
|
apt-get update -qq
|
|
apt-get install -qq --no-install-recommends \
|
|
doxygen \
|
|
graphviz \
|
|
make \
|
|
python3
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
#EOF
|