Skip to content

Commit

Permalink
add installing last version doxygen sсript
Browse files Browse the repository at this point in the history
  • Loading branch information
UmbrellaLeaf5 committed May 1, 2024
1 parent 72c5715 commit 4e22c90
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions install_doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ cd ~/Downloads/Install_Files/Doxygen
wget https://github.com/doxygen/doxygen/releases/download/Release_1_9_7/doxygen-1.9.7.linux.bin.tar.gz

# extract it
file doxygen-1.9.7.linux.bin.tar.gz
tar -xf doxygen-1.9.7.linux.bin.tar.gz

# cd into the extracted directory
Expand All @@ -35,29 +34,12 @@ doxygen --version

# View those man pages
man doxygen
man doxyindexer
man doxysearch
man doxywizard

# Add doxygen to the PATH
DIR="$HOME/Downloads/Install_Files/Doxygen/doxygen-1.9.7/bin"
if [ -d "$DIR" ]; then
PATH="$DIR:$PATH"
fi

# Install the libxapian.so.30 shared object library, required by
# `doxysearch.cgi`
# Note: If you are missing this library and you run `doxysearch.cgi`, you'll
# see this error:
#
# doxysearch.cgi: error while loading shared libraries: libxapian.so.30:
# cannot open shared object file: No such file or directory
#
sudo apt update
sudo apt install libxapian30

# Test the new doxygen executables from the `doxygen-1.9.7/bin/` dir
doxygen --version # should be the same as above
doxyindexer --version
doxysearch.cgi --version
doxywizard --version # opens a GUI popup window with version info.
doxygen --version # should be the same as above

0 comments on commit 4e22c90

Please sign in to comment.