How To Install doxygen-doxyparse on Debian 12

Learn how to install doxygen-doxyparse on Debian 12 with this tutorial. doxygen-doxyparse is Multi-language source code parser based on doxygen

Introduction

In this tutorial we learn how to install doxygen-doxyparse on Debian 12.

What is doxygen-doxyparse

doxygen-doxyparse is:

Doxygen is a documentation system for C++, C, Objective-C, C#, PHP, Java, Python, IDL, Fortran, VHDL and to some extent D. Doxyparse builds on doxygen’s great source code parsing infrastructure and provides a command-line tool that can be used to obtain information from source code, such as:

  • which functions/methods and variables/attributes a module/class contains
  • which functions/methods calls/uses which functions/methods/variables
  • etc

doxyparses’s main goal is to be used by higher-level source code analysis tools.

This package contains doxyparse binary, a source code parser based on doxygen

There are three methods to install doxygen-doxyparse on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install doxygen-doxyparse Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install doxygen-doxyparse using apt-get by running the following command:

sudo apt-get -y install doxygen-doxyparse

Install doxygen-doxyparse Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install doxygen-doxyparse using apt by running the following command:

sudo apt -y install doxygen-doxyparse

Install doxygen-doxyparse Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install doxygen-doxyparse using aptitude by running the following command:

sudo aptitude -y install doxygen-doxyparse

How To Uninstall doxygen-doxyparse on Debian 12

To uninstall only the doxygen-doxyparse package we can use the following command:

sudo apt-get remove doxygen-doxyparse

Uninstall doxygen-doxyparse And Its Dependencies

To uninstall doxygen-doxyparse and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove doxygen-doxyparse

Remove doxygen-doxyparse Configurations and Data

To remove doxygen-doxyparse configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge doxygen-doxyparse

Remove doxygen-doxyparse configuration, data, and all of its dependencies

We can use the following command to remove doxygen-doxyparse configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge doxygen-doxyparse

Dependencies

doxygen-doxyparse have the following dependencies:

References

Summary

In this tutorial we learn how to install doxygen-doxyparse package on Debian 12 using different package management tools: apt, apt-get and aptitude.