packages feed

hakyll-convert-0.2.0.0: hakyll-convert.cabal

-- Initial hakyll-convert.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                hakyll-convert
version:             0.2.0.0
synopsis:            Convert from other blog engines to Hakyll.
description:         WordPress and Blogger only let one export posts in
                     a limited number of formats, none of which are supported
                     by Hakyll. @hakyll-convert@ is created to bridge this gap,
                     providing a way to turn other platform's datadumps into
                     a set of files Hakyll understands.
homepage:            http://github.com/Minoru/hakyll-convert
license:             BSD3
license-file:        LICENSE
author:              Eric Kow <eric.kow@gmail.com>, Alexander Batischev <eual.jp@gmail.com>
maintainer:          Alexander Batischev <eual.jp@gmail.com>
-- copyright:           
category:            Web
build-type:          Simple
cabal-version:       >=1.8

library
  exposed-modules:    Hakyll.Convert.Blogger
                 ,    Hakyll.Convert.Common
                 ,    Hakyll.Convert.Wordpress
                 ,    Hakyll.Convert.OutputFormat
  build-depends:       base
               ,       binary
               ,       bytestring
               ,       containers
               ,       data-default
               ,       feed
               ,       filepath
               ,       hakyll
               ,       text
               ,       time
               ,       xml

executable hakyll-convert
  main-is:             hakyll-convert.hs
  hs-source-dirs:      tools
  -- other-modules:       
  build-depends:       base < 5
               ,       bytestring
               ,       cmdargs
               ,       directory
               ,       feed
               ,       filepath
               ,       hakyll-convert
               ,       text
               ,       time
               ,       xml