packages feed

hastily-0.1.0.6: hastily.cabal

name:                hastily
version:             0.1.0.6
synopsis:            A program to download subtitle files.
description:         Please see README.md
homepage:            http://bitbucket.org/sras/hastily
license:             BSD3
license-file:        LICENSE
author:              Sandeep.C.r
maintainer:          sandeepcr2@gmail.com
copyright:           2015 Sandeep.C.R
category:            Cli
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Text.Hastily.MovieInfoSources.Omdb.Omdb, 
                       Text.Hastily.MovieSubtitleSources.OpenSubtitles.OpenSubtitles,
                       Text.Hastily.Types,
                       Text.Hastily.Network,
                       Text.Hastily.Report,
                       Text.Hastily.SubtitleFileTypes.Srt.Srt,
                       Text.Hastily.Unpack.Zip.ZipExtractor,
                       Text.Hastily.MovieSubtitleSources.OpenSubtitles.Languages
  other-modules:       
  build-depends:       base >= 4.6 && < 5,
                       http-client,
                       http-types,
                       bytestring,
                       aeson,
                       string-conversions,
                       text,
                       filepath,
                       directory,
                       zip-archive,
                       directory-tree,
                       parsec,
                       concurrent-extra,
                       unbounded-delays,
                       containers,
                       exceptions,
                       hxt
  default-language:    Haskell2010


executable hastily
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base >= 4.6 && < 5
                     , string-conversions
                     , directory
                     , text
                     , hastily
  default-language:    Haskell2010

test-suite hastily-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , hastily
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     mercurial
  location: https://bitbucket.org/sras/hastily