diff options
-rw-r--r-- | haddock-ghc.cabal | 11 | ||||
-rw-r--r-- | src/Main.hs | 2 |
2 files changed, 7 insertions, 6 deletions
diff --git a/haddock-ghc.cabal b/haddock-ghc.cabal index aa61d2ec..4ec7fd26 100644 --- a/haddock-ghc.cabal +++ b/haddock-ghc.cabal @@ -1,11 +1,10 @@ name: haddock-ghc -cabal-version: >=1.1.4 -version: 0.1 +version: 2.0 license: BSD3 license-file: LICENSE -copyright: (c) Simon Marlow -author: Simon Marlow -maintainer: Simon Marlow <simonmar@microsoft.com> +copyright: (c) Simon Marlow, David Waern +author: Simon Marlow, David Waern +maintainer: David Waern <davve@dtek.chalmers.se> stability: stable homepage: http://www.haskell.org/haddock/ synopsis: Haddock is a documentation-generation tool for Haskell libraries @@ -53,7 +52,7 @@ extra-source-files: haskell.vim src/haddock.sh -executable: haddock-ghc +executable: haddock hs-source-dirs: src main-is: Main.hs extensions: CPP, PatternGuards diff --git a/src/Main.hs b/src/Main.hs index b7ecab36..feb815fd 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -2,6 +2,8 @@ -- Haddock - A Haskell Documentation Tool -- -- (c) Simon Marlow 2003 +-- +-- Ported to use the GHC API by David Waern during "Summer of Code" 2006 -- module Main (main) where |