diff options
author | simonmar <simonmar@microsoft.com> | 2005-10-14 23:11:19 +0000 |
---|---|---|
committer | simonmar <simonmar@microsoft.com> | 2005-10-14 23:11:19 +0000 |
commit | 21c7ac8d714be74903755ed2d6ee3716ab77a727 (patch) | |
tree | 98fe80aceff6746cfbf8eb631a42ef1101198150 /haddock.cabal | |
parent | b2edbedbcf19f9ec187128574f0dba29d3373d41 (diff) |
First cut of Cabal build system
Diffstat (limited to 'haddock.cabal')
-rw-r--r-- | haddock.cabal | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/haddock.cabal b/haddock.cabal new file mode 100644 index 00000000..6779799e --- /dev/null +++ b/haddock.cabal @@ -0,0 +1,49 @@ +name: Haddock +version: 0.8 +license: BSD3 +license-file: LICENSE +copyright: (c) Simon Marlow +author: Simon Marlow +maintainer: Simon Marlow <simonmar@microsoft.com> +stability: stable +homepage: http://www.haskell.org/haddock/ +synopsis: Haddock is a documentation-generation tool for Haskell libraries +build-depends: base>=1.0, haskell98>=1.0, mtl>=1.0, network>=1.0 +data-files: + html/haddock.css + html/haddock.js + html/haskell_icon.gif + html/minus.gif + html/plus.gif + +executable: haddock +hs-source-dirs: src +main-is: Main.hs +extensions: CPP +other-modules: + Binary + BlockTable + Digraph + FastMutInt + HaddockDB + HaddockDevHelp + HaddockHH + HaddockHH2 + HaddockHtml + HaddockLex + HaddockModuleTree + HaddockParse + HaddockRename + HaddockTypes + HaddockUtil + HaddockVersion + HsLexer + HsParseMonad + HsParseUtils + HsParser + HsSyn + Html + Main + Map + Set + |