How To Install libghc-shake-dev on Debian 10
Introduction
In this tutorial we learn how to install libghc-shake-dev
on Debian 10.
What is libghc-shake-dev
libghc-shake-dev is:
Shake is a Haskell library for writing build systems - designed as a replacement for make.
To use Shake the user writes a Haskell program that imports Development.Shake, defines some build rules, and calls the Development.Shake.shakeArgs function. Thanks to do notation and infix operators, a simple Shake build system is not too dissimilar from a simple Makefile. However, as build systems get more complex, Shake is able to take advantage of the excellent abstraction facilities offered by Haskell and easily support much larger projects. The Shake library provides all the standard features available in other build systems, including automatic parallelism and minimal rebuilds. Shake also provides more accurate dependency tracking, including seamless support for generated files, and dependencies on system information (e.g. compiler version).
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-shake-dev
on Debian 10. 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-shake-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-shake-dev
using apt-get
by running the following command:
sudo apt-get -y install libghc-shake-dev
Install libghc-shake-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libghc-shake-dev
using apt
by running the following command:
sudo apt -y install libghc-shake-dev
Install libghc-shake-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-shake-dev
using aptitude
by running the following command:
sudo aptitude -y install libghc-shake-dev
How To Uninstall libghc-shake-dev on Debian 10
To uninstall only the libghc-shake-dev
package we can use the following command:
sudo apt-get remove libghc-shake-dev
Uninstall libghc-shake-dev And Its Dependencies
To uninstall libghc-shake-dev
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove libghc-shake-dev
Remove libghc-shake-dev Configurations and Data
To remove libghc-shake-dev
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge libghc-shake-dev
Remove libghc-shake-dev configuration, data, and all of its dependencies
We can use the following command to remove libghc-shake-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libghc-shake-dev
Dependencies
libghc-shake-dev have the following dependencies:
- libghc-shake-data
- libghc-base-dev-4.11.1.0-5dd74
- libghc-binary-dev-0.8.5.1-24ea6
- libghc-bytestring-dev-0.10.8.2-76891
- libghc-deepseq-dev-1.4.3.0-17e4f
- libghc-directory-dev-1.3.1.5-a6230
- libghc-extra-dev-1.6.9-31542
- libghc-filepath-dev-1.4.2-27f5e
- libghc-hashable-dev-1.2.7.0-68a88
- libghc-js-flot-dev-0.8.3-d3d8f
- libghc-js-jquery-dev-3.3.1-949c2
- libghc-primitive-dev-0.6.4.0-b7b8e
- libghc-process-dev-1.6.3.0-5105e
- libghc-random-dev-1.1-1827c
- libghc-time-dev-1.8.0.2-2ae9f
- libghc-transformers-dev-0.5.5.0-b5d2f
- libghc-unix-dev-2.7.2.2-fe53d
- libghc-unordered-containers-dev-0.2.9.0-e9bb1
- libghc-utf8-string-dev-1.0.1.1-cc7cb
- libatomic1
- libc6
- libgmp10
References
Summary
In this tutorial we learn how to install libghc-shake-dev
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.