File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -13,18 +13,11 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Linux
13
13
SUDO=' sudo'
14
14
fi
15
15
echo " Installing apt packages"
16
- $SUDO apt-get install --yes cmake graphviz llvm clang pkg-config m4 unzip \
16
+ $SUDO apt-get install --yes cmake llvm clang pkg-config m4 unzip \
17
17
wget curl python3-dev
18
- # Install Doxygen
19
- # the newest version in Ubuntu 20.04 repository is 1.8.17, but we need Doxygen 1.9 series
20
- echo " Installing doxygen"
21
- wget -c -q https://www.doxygen.nl/files/doxygen-1.9.7.linux.bin.tar.gz
22
- tar xf doxygen-1.9.7.linux.bin.tar.gz
23
- cd doxygen-1.9.7 && $SUDO make install && cd -
24
- rm -rf doxygen-1.9.7 doxygen-1.9.7.linux.bin.tar.gz
25
18
elif [[ " $OSTYPE " == " darwin" * ]]; then # macOS
26
19
brew update || true # allow failure
27
- brew install cmake doxygen pkg-config wget unzip coreutils # `coreutils` installs the `realpath` command
20
+ brew install cmake pkg-config wget unzip coreutils # `coreutils` installs the `realpath` command
28
21
elif [[ " $OSTYPE " == " msys" * ]]; then # Windows
29
22
echo " Dependencies are not going to be installed automatically on Windows."
30
23
else
You can’t perform that action at this time.
0 commit comments