-
Notifications
You must be signed in to change notification settings - Fork 3
/
sundown.cabal
54 lines (46 loc) · 1.99 KB
/
sundown.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
Cabal-version: >= 1.6
Name: sundown
Version: 0.6
Author: Francesco Mazzoli ([email protected])
Maintainer: Francesco Mazzoli ([email protected])
Build-Type: Simple
License: PublicDomain
Build-Type: Simple
Category: Foreign binding, Text
Synopsis: Bindings to the sundown markdown library
Tested-With: GHC==7.4.2, GHC==7.2.2, GHC==7.0.4, GHC==6.12.3
Homepage: https://github.com/bitonic/sundown
Bug-Reports: https://github.com/bitonic/sundown/issues
Description:
Bindings to GitHub's C markdown library: <https://github.com/vmg/sundown>.
.
The Haskell code is in the public domain. For sundown's license, refer to
its GitHub page.
source-repository head
type: git
location: git://github.com/bitonic/sundown.git
Library
Hs-Source-Dirs: src
Build-Depends: base >= 3 && < 5,
bytestring,
text
GHC-Options: -Wall -O2 -fno-cse
Extensions: EmptyDataDecls, ForeignFunctionInterface
Exposed-Modules: Text.Sundown,
Text.Sundown.Html,
Text.Sundown.Html.ByteString,
Text.Sundown.Html.String,
Text.Sundown.Html.Text
Other-Modules: Text.Sundown.Buffer.Foreign,
Text.Sundown.Html.Foreign,
Text.Sundown.Flag,
Text.Sundown.Foreign
C-Sources: sundown-c/autolink.c, sundown-c/buffer.c,
sundown-c/houdini_href_e.c, sundown-c/houdini_html_e.c,
sundown-c/html.c, sundown-c/html_smartypants.c,
sundown-c/markdown.c, sundown-c/stack.c
Include-Dirs: sundown-c
Includes: autolink.h, buffer.h, html.h, html_blocks.h, markdown.h,
stack.h
Install-includes: autolink.h, buffer.h, houdini.h, html.h, html_blocks.h,
markdown.h, stack.h