How To Install libghc-language-c99-dev on Debian 12

Learn how to install libghc-language-c99-dev on Debian 12 with this tutorial. libghc-language-c99-dev is Impl. of C99 AST that strictly follows the standard

Introduction

In this tutorial we learn how to install libghc-language-c99-dev on Debian 12.

What is libghc-language-c99-dev

libghc-language-c99-dev is:

This package contains an implementation of the C99 AST as described in http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf. Sticking closely to this standard assures us that the program we deal with is a valid C99 program.

Additionally the library comes with a pretty printer.

The package does not come with handy wrapper and utility functions to write a C99 program, it just contains the bare AST. It is highly recommended to use the wrapper provided by ’language-c99-simple’ and ’language-c99-util’ for writing programs.

This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.

There are three methods to install libghc-language-c99-dev 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 libghc-language-c99-dev Using apt-get

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

sudo apt-get update

After updating apt database, We can install libghc-language-c99-dev using apt-get by running the following command:

sudo apt-get -y install libghc-language-c99-dev

Install libghc-language-c99-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libghc-language-c99-dev using apt by running the following command:

sudo apt -y install libghc-language-c99-dev

Install libghc-language-c99-dev 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 libghc-language-c99-dev using aptitude by running the following command:

sudo aptitude -y install libghc-language-c99-dev

How To Uninstall libghc-language-c99-dev on Debian 12

To uninstall only the libghc-language-c99-dev package we can use the following command:

sudo apt-get remove libghc-language-c99-dev

Uninstall libghc-language-c99-dev And Its Dependencies

To uninstall libghc-language-c99-dev and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove libghc-language-c99-dev

Remove libghc-language-c99-dev Configurations and Data

To remove libghc-language-c99-dev configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libghc-language-c99-dev

Remove libghc-language-c99-dev configuration, data, and all of its dependencies

We can use the following command to remove libghc-language-c99-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libghc-language-c99-dev

Dependencies

libghc-language-c99-dev have the following dependencies:

References

Summary

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