forked from jmillikin/anansi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anansi.cabal
89 lines (78 loc) · 2.39 KB
/
anansi.cabal
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: anansi
version: 0.4.8
license: GPL-3
license-file: license.txt
author: John Millikin <[email protected]>, Dirk Laurie <[email protected]>
maintainer: John Millikin <[email protected]>
build-type: Simple
cabal-version: >= 1.6
category: Development
stability: experimental
homepage: https://john-millikin.com/software/anansi/
bug-reports: mailto:[email protected]
synopsis: Simple literate programming preprocessor
description:
Anansi is a preprocessor for literate programs, in the model of NoWeb or
nuweb. Literate programming allows computer code and a human-readable
document to be generated from the same source. Compared to NoWeb,
Anansi’s primary benefits are the ability to include separate files,
and to automatically generate an entire directory tree from a project
without having to enumerate each output.
.
This package is split into a library and an executable. The executable is
suitable for simple cases, such as generating basic HTML or LaTeX. The
library is useful for users who would like to write their own output formats
(called “looms”).
source-repository head
type: git
location: https://john-millikin.com/code/anansi/
source-repository this
type: git
location: https://john-millikin.com/code/anansi/
tag: anansi_0.4.8
library
hs-source-dirs: lib
ghc-options: -Wall -O2
if impl(ghc>=7.10)
ghc-options: -fno-warn-tabs
build-depends:
base >= 4.0 && < 5.0
, bytestring >= 0.9
, containers >= 0.1
, monads-tf >= 0.1 && < 0.2
, options >= 1.0 && < 2.0
, parsec >= 3.0 && < 3.2
, system-argv0 >= 0.1 && < 0.2
, system-filepath >= 0.3.1 && < 0.5
, system-fileio >= 0.2.1 && < 0.4
, text >= 0.7
exposed-modules:
Anansi
other-modules:
Paths_anansi
Anansi.Loom.Debug
Anansi.Loom.HTML
Anansi.Loom.LaTeX
Anansi.Loom.Markdown
Anansi.Loom.NoWeb
Anansi.Main
Anansi.Parser
Anansi.Tangle
Anansi.Types
executable anansi
main-is: Main.hs
hs-source-dirs: lib,src
ghc-options: -Wall -O2
if impl(ghc>=7.10)
ghc-options: -fno-warn-tabs
build-depends:
base >= 4.0 && < 5.0
, bytestring >= 0.9
, containers >= 0.1
, monads-tf >= 0.1 && < 0.2
, options >= 1.0 && < 2.0
, parsec >= 3.0 && < 3.2
, system-argv0 >= 0.1 && < 0.2
, system-filepath >= 0.3.1 && < 0.5
, system-fileio >= 0.2.1 && < 0.4
, text >= 0.7