From 255e7364cd5d56da5b0757ca3789c63ca1a4a743 Mon Sep 17 00:00:00 2001 From: Dmitry Krivoruchko <144147209+UmbrellaLeaf5@users.noreply.github.com> Date: Fri, 10 May 2024 02:36:32 +0300 Subject: [PATCH] doxygen update --- .extra/doxygen/install_doxygen.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.extra/doxygen/install_doxygen.sh b/.extra/doxygen/install_doxygen.sh index d92bb5d..6b44e34 100644 --- a/.extra/doxygen/install_doxygen.sh +++ b/.extra/doxygen/install_doxygen.sh @@ -3,19 +3,19 @@ # source: https://askubuntu.com/questions/1291874/how-to-install-doxygen-on-ubuntu # Create a directory where you want to download it -mkdir -p ~/Downloads/Install_Files/Doxygen -cd ~/Downloads/Install_Files/Doxygen +mkdir -p ~/Downloads/Doxygen +cd ~/Downloads/Doxygen # download it -wget https://github.com/doxygen/doxygen/releases/download/Release_1_9_7/doxygen-1.9.7.linux.bin.tar.gz +wget https://github.com/doxygen/doxygen/releases/download/Release_1_10_0/doxygen-1.10.0.linux.bin.tar.gz # extract it -tar -xf doxygen-1.9.7.linux.bin.tar.gz +tar -xf doxygen-1.10.0.linux.bin.tar.gz # cd into the extracted directory # - Note: this directory already has a `bin` dir with prebuilt binary # executables. -cd doxygen-1.9.7 +cd doxygen-1.10.0 # make and install it sudo make @@ -24,7 +24,7 @@ sudo make install # Ensure it's installed # Example output: # -# 1.9.7 (ebc57c6dd303a980bd19dd74b8b61c8f3f5180ca) +# 1.10.0 (ebc57c6dd303a980bd19dd74b8b61c8f3f5180ca) # doxygen --version @@ -32,10 +32,10 @@ doxygen --version man doxygen # Add doxygen to the PATH -DIR="$HOME/Downloads/Install_Files/Doxygen/doxygen-1.9.7/bin" +DIR="$HOME/Downloads/Doxygen/doxygen-1.10.0/bin" if [ -d "$DIR" ]; then PATH="$DIR:$PATH" fi -# Test the new doxygen executables from the `doxygen-1.9.7/bin/` dir +# Test the new doxygen executables from the `doxygen-1.10.0/bin/` dir doxygen --version # should be the same as above \ No newline at end of file