packages feed

sgf-0.1.1: sgf.cabal

name:               sgf
version:            0.1.1
author:             Daniel Wagner
maintainer:         daniel@wagner-home.com
homepage:           http://www.dmwit.com/sgf
bug-reports:        http://dmwit.fogbugz.com/
synopsis:           SGF (Smart Game Format) parser
description:
    This is a parser for the go\/igo\/weiqi\/baduk fragment of the SGF format.
    Encodings latin-1, utf-8, and ascii are supported, and the parser strives
    to be robust to minor errors, especially those made by the most common SGF
    editors.  There are plans to support other games and pretty-printing in
    future releases.
category:           Data
license:            BSD3
license-file:       LICENSE
cabal-version:      >= 1.6
build-type:         Simple

library
    exposed-modules:    Data.SGF
                        Data.SGF.Parse
                        Data.SGF.Types

    other-modules:      Data.SGF.Parse.Encodings
                        Data.SGF.Parse.Raw
                        Data.SGF.Parse.Util

    build-depends:  base >=3 && < 4,
                    containers,
                    extensible-exceptions,
                    mtl>=1,
                    time>=1,
                    parsec>=3,
                    split,
                    encoding>=0.6

source-repository head
    type:       git
    location:   http://www.dmwit.com/sgf/.git

source-repository this
    type:       git
    location:   http://www.dmwit.com/sgf/.git
    tag:        0.1.1