How to Install and Uninstall shake Package on openSuSE Tumbleweed

Last updated: May 11,2024

1. Install "shake" package

This guide covers the steps necessary to install shake on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install shake

2. Uninstall "shake" package

This is a short guide on how to uninstall shake on openSuSE Tumbleweed:

$ sudo zypper remove shake

3. Information about the shake package on openSuSE Tumbleweed

Information for package shake:
------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : shake
Version : 0.19.6-1.6
Arch : x86_64
Vendor : openSUSE
Installed Size : 6,4 MiB
Installed : No
Status : not installed
Source package : shake-0.19.6-1.6.src
Summary : Build system library, like Make, but more accurate dependencies
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).