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 cf42eba
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .extra/doxygen/install_doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ mkdir -p ~/Downloads/Install_Files/Doxygen
cd ~/Downloads/Install_Files/Doxygen

# download it
wget https://github.com/doxygen/doxygen/releases/download/Release_1_9_7/doxygen-1.9.7.linux.bin.tar.gz
wget hhttps://github.com/doxygen/doxygen/releases/download/Release_1_9_8/doxygen-1.9.8.linux.bin.tar.gz

# extract it
tar -xf doxygen-1.9.7.linux.bin.tar.gz
tar -xf doxygen-1.9.8.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.9.8

# 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.9.8 (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/Install_Files/Doxygen/doxygen-1.9.8/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.9.8/bin/` dir
doxygen --version # should be the same as above

0 comments on commit cf42eba

Please sign in to comment.