Skip to content

Commit 26cf7f6

Browse files
authored
Merge branch 'main' into Xmader/ci/remove-ubuntu-24.04
2 parents ef5a632 + 4e1b67c commit 26cf7f6

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

setup.sh

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,11 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Linux
1313
SUDO='sudo'
1414
fi
1515
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 \
1717
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
2518
elif [[ "$OSTYPE" == "darwin"* ]]; then # macOS
2619
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
2821
elif [[ "$OSTYPE" == "msys"* ]]; then # Windows
2922
echo "Dependencies are not going to be installed automatically on Windows."
3023
else

0 commit comments

Comments
 (0)