-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbash.cabal
More file actions
45 lines (42 loc) · 1.87 KB
/
bash.cabal
File metadata and controls
45 lines (42 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name : bash
version : 0.1.8
category : Language
license : BSD3
license-file : LICENSE
author : Jason Dusek
maintainer : oss@solidsnack.be
homepage : http://github.com/solidsnack/bash
synopsis : Bash generation library.
description :
A library for generation of Bash scripts, handling escaping, statement
grouping and expression formation at a high level.
.
The top-level module, Language.Bash, is all you need to import to access the
package's functionality. The module Language.Bash.Lib contains some
examples, as does the test script, tests.bash, included with the source
distribution.
cabal-version : >= 1.6
build-type : Simple
extra-source-files : README
, tests.bash
flag split-base
library
if flag(split-base)
build-depends : base >= 4 && < 5
else
build-depends : base < 4
build-depends : containers
, bytestring >= 0.9
, shell-escape >= 0.1.1
, binary >= 0.5.0.2
, hxt-regex-xmlschema >= 9.0.0
, mtl >= 2.0.1.0
, SHA >= 1.4.1.3
exposed-modules : Language.Bash
Language.Bash.Syntax
Language.Bash.Script
Language.Bash.PrettyPrinter
Language.Bash.PrettyPrinter.State
Language.Bash.Annotations
Language.Bash.Lib
ghc-options : -Wincomplete-patterns -Werror