-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathorgmode.cabal
43 lines (36 loc) · 1.42 KB
/
orgmode.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
-- Initial orgmode.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: orgmode
version: 0.1.0.1
synopsis: Org Mode library for haskell
description: A library to read and write emacs org-mode documents.
license: BSD3
license-file: LICENSE
author: Lally Singh
maintainer: [email protected]
-- copyright:
category: Data
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
flag network-uri
description: Get Network.URI from the network-uri package
default: True
library
exposed-modules: Data.OrgMode, Data.OrgMode.Text, Data.OrgMode.Doc, Data.OrgMode.OrgDocView
build-depends: base, parsec, text, regex-posix,
containers, HStringTemplate >= 0.7.3, syb
hs-source-dirs: src
default-language: Haskell2010
Test-Suite spec
type: exitcode-stdio-1.0
hs-source-dirs: tests, src
main-is: MainTestSuite.hs
build-depends: base, parsec, text, regex-posix, containers,
HStringTemplate >= 0.7.3, syb, QuickCheck, hspec >= 1.3, random
if flag(network-uri)
build-depends: network-uri >= 2.6, network >= 2.6
else
build-depends: network-uri < 2.6, network < 2.6
-- Base language which the package is written in.
default-language: Haskell2010