packages feed

pgdl-8.1: pgdl.cabal

name:                pgdl
version:             8.1
license:             PublicDomain
license-file:        LICENSE
author:              sifmelcara
maintainer:          sifmelcara
category:            Network
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
description:         a terminal user interface program that downloads a video from html and call vlc to play it immediately.
                     (Linux: vlc -f "video.mp4", MACOSX: open "video.mp4" -a vlc)
                     .
                     Client: Only for Linux and MACOSX.
                     Server: Only for nginx's file download page.
                     .
                     The program will sort the video files and folders by date while files in nginx's download page just sort by name.
                     .
                     For shortcut keys, please visit <https://github.com/sifmelcara/pgdl>

synopsis:            pgdownloader

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

executable pgdl
  hs-source-dirs:      src
  main-is:             Main.hs
  other-modules:       NameAlgo, Chkcfg, FetchHtml, Getconfig,
                       Log, RealWorld, PrsVid, Video, GenStat, 
                       CrtInf, AskScene, UI
  build-depends:       base == 4.*, process, 
                       directory, bytestring,
                       tagsoup, network-uri, 
                       vty, text, vty-ui >= 1.8,
                       configurator >= 0.3.0.0, HTTP,
                       filepath, Cabal, array
  ghc-options:         -threaded -O2
  default-language:    Haskell2010