Skip to content

Commit

Permalink
doxygen update
Browse files Browse the repository at this point in the history
  • Loading branch information
UmbrellaLeaf5 committed May 9, 2024
1 parent 5086f9a commit 255e736
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .extra/doxygen/install_doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -24,18 +24,18 @@ sudo make install
# Ensure it's installed
# Example output:
#
# 1.9.7 (ebc57c6dd303a980bd19dd74b8b61c8f3f5180ca)
# 1.10.0 (ebc57c6dd303a980bd19dd74b8b61c8f3f5180ca)
#
doxygen --version

# View those man pages
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

0 comments on commit 255e736

Please sign in to comment.