mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-28 06:05:29 -04:00
10 lines
184 B
Bash
Executable file
10 lines
184 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
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
#EOF
|