-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpulp.cabal
More file actions
56 lines (53 loc) · 1.85 KB
/
pulp.cabal
File metadata and controls
56 lines (53 loc) · 1.85 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
46
47
48
49
50
51
52
53
54
55
56
name: pulp
version: 0.0
synopsis: process your LaTeX log file with pulp and make a better paper
-- description:
homepage: http://dmwit.com/pulp
license: BSD3
license-file: LICENSE
author: Daniel Wagner
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: Text.Pulp
build-depends: base >=4 && <5,
-- mtl-2.2 doesn't export run*T by mistake
mtl >=2 && <3 && (>2.2 || <2.2),
split <0.3,
void >=0 && <1,
regex-posix >=0.95 && <0.96
hs-source-dirs: lib
default-language: Haskell2010
ghc-options: -O2
if(impl(ghc >= 7.10))
ghc-options: -fno-warn-tabs
executable pulp
main-is: pulp.hs
other-modules: Config
build-depends: base >=4 && <5,
mtl >=2 && <3,
pulp ==0.0,
regex-posix >=0.95 && <0.96,
universe-reverse-instances >=1.0 && <1.1
hs-source-dirs: bin
default-language: Haskell2010
ghc-options: -O2
if(impl(ghc >= 7.10))
ghc-options: -fno-warn-tabs
test-suite regression
type: detailed-0.9
test-module: Regression
build-depends: base >=4 && <5,
Cabal >=1.18 && <1.23,
directory >=1.2 && <1.3,
filepath >=1.3 && <1.5,
pulp ==0.0,
strict >=0.3 && <0.4
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -O2
if(impl(ghc >= 7.10))
ghc-options: -fno-warn-tabs