packages feed

GenI-0.24.1: GenI.cabal

Name:           GenI
Version:        0.24.1
License:        GPL
License-file:   LICENSE
Author:         Carlos Areces and Eric Kow
Category:       Natural Language Processing
Synopsis:       A natural language generator (specifically, an FB-LTAG surface realiser)
Description:    A natural language generator (specifically, an FB-LTAG surface realiser)
Homepage:       http://projects.haskell.org/GenI
Maintainer:     geni-users@loria.fr
Build-Type:     Simple
Cabal-Version: >=1.14
data-files: AUTHORS, README.markdown, NEWS, GenI.cabal,
            examples/artificial/lexicon,
            examples/artificial/trees,
            examples/artificial/suite,
            examples/artificial/suite-bad,
            examples/chatnoir/lexicon,
            examples/chatnoir/trees,
            examples/chatnoir/suite,
            examples/demo/lexicon,
            examples/demo/trees,
            examples/demo/README,
            examples/demo/suite,
            examples/ej/lexicon,
            examples/ej/trees,
            examples/ej/suite,
            examples/nosemantics/lexicon,
            examples/nosemantics/trees,
            examples/nosemantics/README.txt,
            examples/promettre/lexicon,
            examples/promettre/trees,
            examples/promettre/morphinfo,
            examples/promettre/suite,
            examples/xmg-example/grammar/Arguments.mg,
            examples/xmg-example/grammar/demo-corpus-utf8.txt,
            examples/xmg-example/grammar/Entete.mg,
            examples/xmg-example/grammar/Evaluations.mg,
            examples/xmg-example/grammar/Misc.mg,
            examples/xmg-example/grammar/parse-corpus.sh,
            examples/xmg-example/grammar/Sem.mg,
            examples/xmg-example/grammar/VerbMorph.mg,
            examples/xmg-example/lexicon/demo-lemma-utf8.lex,
            examples/xmg-example/lexicon/demo-morph-utf8.mph,
            examples/xmg-example/Makefile,
            examples/xmg-example/README,
            examples/xmg-example/suite

extra-source-files: geni-test/NLP/GenI/Test.hs

source-repository head
  type:     darcs
  location: http://hub.darcs.net/kowey/GenI

Flag static
  Description: Build a static binary
  Default:     False

Library
  Build-depends: base >= 4 && < 5
               , binary >= 0.5.0.2
               , bytestring
               , cabal-macosx  >= 0.1.2 && < 0.3
               , containers >= 0.1
               , deepseq
               , directory   > 1
               , errors
               , filepath    == 1.*
               , hslogger
               , json >= 0.4.3 && < 0.6
               , mtl > 1.0
               , old-locale
               , ordered == 0.1.*
               , parsec >= 2
               , process > 1
               , syb
               , text
               , time >= 1.1
               , transformers
               , yaml-light  == 0.1.*

  if flag(static)
    ghc-options: -static -optl-static

  Exposed-Modules:
                BoolExp,
                Data.FullList.Internal,
                Data.FullList,
                NLP.GenI.Configuration,
                NLP.GenI.Console,
                NLP.GenI.Control,
                NLP.GenI.ErrorIO,
                NLP.GenI.FeatureStructure,
                NLP.GenI.Flag,
                NLP.GenI.General,
                NLP.GenI.GeniShow,
                NLP.GenI.GeniVal,
                NLP.GenI.GeniVal.Internal,
                NLP.GenI.Lexicon,
                NLP.GenI.Lexicon.Internal,
                NLP.GenI.LexicalSelection,
                NLP.GenI.LexicalSelection.Types,
                NLP.GenI.Main,
                NLP.GenI.Parser,
                NLP.GenI.Pretty,
                NLP.GenI.Semantics,
                NLP.GenI.Tag,
                NLP.GenI.TestSuite,
                NLP.GenI.TreeSchema,
                NLP.GenI.Warning,
                NLP.GenI.Warning.Internal,
                NLP.GenI.Morphology,
                NLP.GenI.Morphology.Types,
                NLP.GenI.OptimalityTheory,
                NLP.GenI.Polarity,
                NLP.GenI.Polarity.Internal,
                NLP.GenI.Polarity.Types,
                NLP.GenI.Automaton,
                NLP.GenI.Statistics,
                NLP.GenI.Builder,
                NLP.GenI.Simple.SimpleBuilder,
                NLP.GenI
  Other-Modules:
                Paths_GenI

  Default-language: Haskell2010
  Hs-Source-Dirs: src
  Ghc-options:    -Wall
  Ghc-prof-options: -auto-all

Executable     geni
 Main-Is:        geni.hs
 Hs-Source-Dirs: geni
 Default-language: Haskell2010
 Ghc-options:    -Wall -rtsopts
 Ghc-prof-options: -auto-all
 Build-Depends: base >= 4 && < 5
              , GenI
              , containers  >= 0.1
              , directory   > 1
              , errors
              , filepath    == 1.*
              , yaml-light  == 0.1.*
              , hslogger
              , json        >= 0.4 && < 0.6
              , mtl         > 1.0
              , process     > 1

Test-Suite geni-test
 Type:          exitcode-stdio-1.0
 Main-Is:       MainTest.hs
 Hs-Source-Dirs: geni-test
 Default-language: Haskell2010
 Build-Depends:    GenI
                 , base >= 4 && < 5
                 , containers  >= 0.1
                 , errors
                 , filepath   == 1.*
                 , json
                 , mtl
                 , parsec >= 2 && < 3.2
                 , QuickCheck
                 , smallcheck
                 , HUnit > 1 && < 1.3
                 , test-framework-hunit
                 , test-framework-quickcheck2
                 , test-framework-smallcheck
                 , test-framework > 0.3
                 , text
                 , transformers