name: goatee version: 0.1.1 synopsis: A monadic take on a 2,500-year-old board game - library. category: Game license: AGPL-3 license-file: LICENSE copyright: Copyright 2014 Bryan Gardiner author: Bryan Gardiner maintainer: Bryan Gardiner homepage: http://khumba.net/projects/goatee bug-reports: https://savannah.nongnu.org/projects/goatee/ tested-with: GHC cabal-version: >=1.8 build-type: Simple data-files: LICENSE description: Goatee is a Go library and game editor, written in Haskell. It provides a GUI for recording, studying, and editing game records. Underneath this is a portable library for manipulating SGF files, to build UIs and tools. . Goatee, the library and GUI, aims to be full-featured, supporting all of the SGF spec and allowing for full customization of the game records you create. Currently it is in an alpha stage, supporting basic game viewing and editing. . This package is the shared library. source-repository head type: git location: git://git.savannah.gnu.org/goatee.git library build-depends: base >= 4 && < 5, containers >= 0.4 && < 0.6, mtl >= 2.1 && < 2.3, parsec >= 3.1 && < 3.2, template-haskell >= 2.7 && < 2.9 exposed-modules: Game.Goatee.App Game.Goatee.Common Game.Goatee.Sgf.Board Game.Goatee.Sgf.Monad Game.Goatee.Sgf.Parser Game.Goatee.Sgf.Property Game.Goatee.Sgf.Property.Parser Game.Goatee.Sgf.Renderer Game.Goatee.Sgf.Renderer.Tree Game.Goatee.Sgf.Tree Game.Goatee.Sgf.Types extensions: ExistentialQuantification FlexibleContexts FlexibleInstances FunctionalDependencies MultiParamTypeClasses UndecidableInstances ghc-options: -W -fwarn-incomplete-patterns hs-source-dirs: src other-modules: Game.Goatee.Sgf.Property.Base Game.Goatee.Sgf.Property.Info Game.Goatee.Sgf.Property.Renderer Game.Goatee.Sgf.Property.Value Paths_goatee test-suite test-goatee build-depends: base >= 4 && < 5, containers >= 0.4 && < 0.6, goatee, HUnit >= 1.2 && < 1.3, mtl >= 2.1 && < 2.3, parsec >= 3.1 && < 3.2, test-framework >= 0.6 && < 0.9, test-framework-hunit >= 0.2 && < 0.4 ghc-options: -W -fwarn-incomplete-patterns hs-source-dirs: tests main-is: Test.hs other-modules: Game.Goatee.CommonTest Game.Goatee.Sgf.BoardTest Game.Goatee.Sgf.MonadTest Game.Goatee.Sgf.ParserTest Game.Goatee.Sgf.ParserTestUtils Game.Goatee.Sgf.Property.ParserTest Game.Goatee.Sgf.PropertyTest Game.Goatee.Sgf.RoundTripTest Game.Goatee.Sgf.TestInstances Game.Goatee.Sgf.TestUtils Game.Goatee.Sgf.TreeTest Game.Goatee.Sgf.TypesTest Game.Goatee.Test.Common Test type: exitcode-stdio-1.0