aboutsummaryrefslogtreecommitdiff
path: root/tp-bbcode/thermoprint-bbcode.cabal
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-01-18 12:09:36 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-01-18 12:09:36 +0000
commit57c56564d15cd5c83a4f1d1bab5490e6b75e8656 (patch)
tree55ea741665155b46b9e599b149dee3323fe479c0 /tp-bbcode/thermoprint-bbcode.cabal
parent9435083465a487553b21c599c1340aa5e5ed8a1c (diff)
downloadthermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar.gz
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar.bz2
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar.xz
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.zip
Moved Printout.BBCode to own module
Diffstat (limited to 'tp-bbcode/thermoprint-bbcode.cabal')
-rw-r--r--tp-bbcode/thermoprint-bbcode.cabal50
1 files changed, 50 insertions, 0 deletions
diff --git a/tp-bbcode/thermoprint-bbcode.cabal b/tp-bbcode/thermoprint-bbcode.cabal
new file mode 100644
index 0000000..b9cb655
--- /dev/null
+++ b/tp-bbcode/thermoprint-bbcode.cabal
@@ -0,0 +1,50 @@
1-- Initial thermoprint-bbcode.cabal generated by cabal init. For further
2-- documentation, see http://haskell.org/cabal/users-guide/
3
4name: thermoprint-bbcode
5version: 0.0.0
6synopsis: Parse bbcode for use in thermoprint
7-- description:
8homepage: http://dirty-haskell.org/tags/thermoprint.html
9license: PublicDomain
10license-file: LICENSE
11author: Gregor Kleen
12maintainer: aethoago@141.li
13-- copyright:
14category: Text
15build-type: Simple
16-- extra-source-files:
17cabal-version: >=1.10
18
19library
20 exposed-modules: Thermoprint.Printout.BBCode
21 other-modules: Thermoprint.Printout.BBCode.Attribute
22 extensions: OverloadedStrings
23 , OverloadedLists
24 -- other-extensions:
25 build-depends: base >=4.8.1 && <5
26 , thermoprint-spec ==2.0.*
27 , bbcode >=3.0 && <4
28 , containers -any
29 , text -any
30 , case-insensitive -any
31 hs-source-dirs: src
32 default-language: Haskell2010
33
34Test-Suite tests
35 type: exitcode-stdio-1.0
36 hs-source-dirs: test
37 main-is: Spec.hs
38 ghc-options: -threaded -with-rtsopts=-N
39 extensions: StandaloneDeriving
40 , OverloadedStrings
41 , OverloadedLists
42 build-depends: base >=4.8.1 && <5
43 , thermoprint-bbcode -any
44 , thermoprint-spec ==2.0.*
45 , hspec >=2.2.1 && <3
46 , QuickCheck >=2.8.1 && <3
47 , quickcheck-instances >=0.3.11 && <4
48 , aeson >=0.9.0 && <1
49 , containers -any
50 , text -any \ No newline at end of file