summaryrefslogtreecommitdiff
path: root/Setup.hs
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-02-06 18:55:28 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-02-06 18:55:28 +0000
commit997ea5ea1d02e31bb8a9b03e3db26684cc81ac59 (patch)
tree3b3acec558fa601b2501bdd0394bb7e067a45ef6 /Setup.hs
parent645d5d48b9f94bfb437bedba48f2ac167ee8ade7 (diff)
Removed html2markdown and hsmarkdown.
html2markdown is no longer needed, since you can pass URI arguments to pandoc and directly convert web pages. (Note, however, that pandoc assumes the pages are UTF8. html2markdown made an attempt to guess the encoding and convert them.) hsmarkdown is pointless -- a large executable that could be replaced by 'pandoc --strict'. git-svn-id: https://pandoc.googlecode.com/svn/trunk@1834 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Setup.hs')
-rw-r--r--Setup.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Setup.hs b/Setup.hs
index bd48dbe6e..7284202f2 100644
--- a/Setup.hs
+++ b/Setup.hs
@@ -51,7 +51,7 @@ makeManPages :: Args -> BuildFlags -> PackageDescription -> LocalBuildInfo -> IO
makeManPages _ flags _ _ = mapM_ (makeManPage (fromFlag $ buildVerbosity flags)) manpages
manpages :: [FilePath]
-manpages = ["pandoc.1", "hsmarkdown.1", "html2markdown.1", "markdown2pdf.1"]
+manpages = ["pandoc.1", "markdown2pdf.1"]
manDir :: FilePath
manDir = "man" </> "man1"
@@ -80,7 +80,7 @@ installScripts pkg lbi verbosity copy =
(zip (repeat ".") (wrappers \\ exes))
where exes = map exeName $ filter isBuildable $ executables pkg
isBuildable = buildable . buildInfo
- wrappers = ["html2markdown", "hsmarkdown", "markdown2pdf"]
+ wrappers = ["markdown2pdf"]
installManpages :: PackageDescription -> LocalBuildInfo
-> Verbosity -> CopyDest -> IO ()