packages feed

terminfo-hs-0.1.0.1: terminfo-hs.cabal

name:                terminfo-hs
version:             0.1.0.1
synopsis:            A pure-Haskell (no FFI) module for accessing terminfo databases
description:         This module can acquire terminfo databases and query
                     them for terminal capabilities. For details of
                     terminfo, consult the man pages for term(5) and
                     terminfo(5).

                     This package is dead simple, and doesn't do anything
                     fancy with the capabilities themselves. It merely
                     provides a means for accessing them.

license:             BSD3
license-file:        LICENSE
author:              Bryan Richter
maintainer:          bryan.richter@gmail.com
copyright:           Bryan Richter, 2013
category:            System, Terminal
build-type:          Simple
cabal-version:       >=1.8

source-repository head
  type: git
  location: https://github.com/chreekat/terminfo-hs

source-repository this
  type: git
  tag: 0.1.0.1
  location: https://github.com/chreekat/terminfo-hs/tree/0.1.0.0

library
  ghc-options:         -Wall
  exposed-modules:     System.Terminfo, System.Terminfo.Caps
  other-modules:       System.Terminfo.DBParse,
                       System.Terminfo.Types
                       System.Terminfo.Internal
  build-depends:       base ==4.*, errors ==1.*,
                       bytestring ==0.*, directory ==1.*,
                       filepath ==1.*, attoparsec ==0.*,
                       containers ==0.5.*

test-suite System.Terminfo.Internal
  type:                exitcode-stdio-1.0
  main-is:             test.hs
  build-depends:       base ==4.*, filepath ==1.*, directory ==1.*,
                       errors ==1.*, QuickCheck