How to Install and Uninstall shake.x86_64 Package on CentOS Stream 9

Last updated: September 23,2024

1. Install "shake.x86_64" package

Please follow the step by step instructions below to install shake.x86_64 on CentOS Stream 9

$ sudo dnf update $ sudo dnf install shake.x86_64

2. Uninstall "shake.x86_64" package

In this section, we are going to explain the necessary steps to uninstall shake.x86_64 on CentOS Stream 9:

$ sudo dnf remove shake.x86_64 $ sudo dnf autoremove

3. Information about the shake.x86_64 package on CentOS Stream 9

Last metadata expiration check: 0:08:45 ago on Sat Mar 16 16:03:45 2024.
Available Packages
Name : shake
Version : 0.19.6
Release : 23.el9
Architecture : x86_64
Size : 1.1 M
Source : shake-0.19.6-23.el9.src.rpm
Repository : epel
Summary : Build system library, like Make, but more accurate dependencies
URL : https://hackage.haskell.org/package/shake
License : BSD
Description : Shake is a Haskell library for writing build systems - designed as a
: replacement for 'make'. See "Development.Shake" for an introduction, including
: an example. The homepage contains links to a user manual, an academic paper and
: further information:
:
: 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).