packages feed

pgdl-9.2: pgdl.cabal

name:                pgdl
version:             9.2
license:             PublicDomain
license-file:        LICENSE
author:              mingchuan
maintainer:          mingchuan
category:            Network
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
description:         pgdl is a program for viewing and accessing directory listing webpage in terminal.
                     .
                     Browsing files on directory listings like this and this is often annoying and hard to find the files we want.
                     .
                     pgdl provids a simple interface for browsing and downloading the files in web-engine-generated directory listings.


synopsis:            browse directory listing webpages and download files from them.

source-repository head
  type:     git
  location: https://github.com/sifmelcara/pgdl

executable pgdl
  hs-source-dirs:      src
  main-is:             Main.hs
  other-modules:       Cache, DownloadInterface, Local
                       Networking, Utils, Configure,
                       EntryAttrViewer, Types
  build-depends:       base == 4.*,
                       vector,
                       text, bytestring,
                       Cabal, time,
                       unix, process,
                       filepath, directory,
                       data-default,
                       tagsoup,
                       directory-listing-webpage-parser >= 0.1.1.0,
                       brick, vty,
                       conduit, conduit-extra,
                       http-conduit, http-types, resourcet,
                       configurator >= 0.3,
                       transformers,
                       binary >= 0.7

  ghc-options:         -threaded
  default-language:    Haskell2010