aboutsummaryrefslogtreecommitdiff
path: root/Pandoc.cabal
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-06-17 16:16:57 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-06-17 16:16:57 +0000
commitc841becc84e451c5696bca8aa7040efb484106fd (patch)
treee1e415c8844ecc1671f644d44623688eb79bbe5e /Pandoc.cabal
parent28a99707fd191491b22049c9e4cdac2aedcf35e1 (diff)
downloadpandoc-c841becc84e451c5696bca8aa7040efb484106fd.tar.gz
Include Pandoc.cabal in repository; do not generate it from
Pandoc.cabal.in using cabalize. Removed cabalize and Pandoc.cabal.in, which are no longer needed. Reason: We want Pandoc to be buildable using Cabal without preprocessing, so it can go into the Hackage repository of Haskell libraries. git-svn-id: https://pandoc.googlecode.com/svn/trunk@604 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Pandoc.cabal')
-rw-r--r--Pandoc.cabal40
1 files changed, 40 insertions, 0 deletions
diff --git a/Pandoc.cabal b/Pandoc.cabal
new file mode 100644
index 000000000..d5fe0acab
--- /dev/null
+++ b/Pandoc.cabal
@@ -0,0 +1,40 @@
+Name: Pandoc
+Version: 0.4
+License: GPL
+License-File: COPYING
+Author: John MacFarlane <jgm at berkeley dot edu>
+Stability: alpha
+Homepage: http://sophos.berkeley.edu/macfarlane/pandoc
+Package-URL: http://pandoc.googlecode.com/files/pandoc-0.4.tar.gz
+Category: Text
+Tested-With: GHC
+Synopsis: Utilities for translating between various markup formats
+Description: Haskell utilities for translating between markdown, HTML,
+ reStructuredText, LaTeX, DocBook, and RTF
+Build-Depends: base, parsec, xhtml, mtl, regex-compat
+Hs-Source-Dirs: src
+Exposed-Modules: Text.ParserCombinators.Pandoc,
+ Text.Pandoc,
+ Text.Pandoc.ASCIIMathML,
+ Text.Pandoc.Definition,
+ Text.Pandoc.Entities,
+ Text.Pandoc.Shared,
+ Text.Pandoc.UTF8,
+ Text.Pandoc.Writers.DefaultHeaders,
+ Text.Pandoc.Writers.Docbook,
+ Text.Pandoc.Writers.HTML,
+ Text.Pandoc.Writers.Markdown,
+ Text.Pandoc.Writers.LaTeX,
+ Text.Pandoc.Writers.RST,
+ Text.Pandoc.Writers.S5,
+ Text.Pandoc.Writers.RTF,
+ Text.Pandoc.Readers.HTML,
+ Text.Pandoc.Readers.Markdown,
+ Text.Pandoc.Readers.RST,
+ Text.Pandoc.Readers.LaTeX
+Ghc-Options: -O0
+
+Executable: pandoc
+Hs-Source-Dirs: src
+Main-Is: Main.hs
+Ghc-Options: -O0