AUTHOR: jULIEN mOUTINHO bug-reports: http://doc.autogeree.net/coop/hcompta/bugs build-type: Simple cabal-version: >= 1.8 category: Finance -- data-dir: data -- data-files: description: Hcompta command line interface. extra-source-files: Test.hs extra-tmp-files: extra-source-files: -- i18n/en.msg -- i18n/fr.msg homepage: http://doc.autogeree.net/coop/hcompta license: GPL license-file: COPYING maintainer: Julien Moutinho name: hcompta-cli stability: experimental synopsis: hcompta tested-with: GHC==7.8.4 version: 0.0.0 source-repository head type: git location: git://git.autogeree.net/hcompta Flag dev Description: Turn on development settings. Default: False Flag dump Default: False Description: Dump some intermediate files. Manual: True Flag library-only Description: Build only library. Default: False Flag prof Default: False Description: Turn on profiling settings. Flag threaded Default: True Description: Enable threads. Manual: True Library extensions: NoImplicitPrelude ghc-options: -Wall -fno-warn-tabs if flag(dev) cpp-options: -DDEVELOPMENT ghc-options: else ghc-options: -O2 if flag(dump) ghc-options: -ddump-ds -ddump-simpl -ddump-splices -ddump-stg -ddump-to-file if flag(prof) cpp-options: -DPROFILING ghc-options: -fprof-auto -- default-language: Haskell2010 exposed-modules: Hcompta.CLI.Args Hcompta.CLI.Command Hcompta.CLI.Command.Balance Hcompta.CLI.Command.GL Hcompta.CLI.Command.Journal Hcompta.CLI.Command.Journals -- Hcompta.CLI.Command.Stats -- Hcompta.CLI.Command.Tags Hcompta.CLI.Context Hcompta.CLI.Env Hcompta.CLI.Format Hcompta.CLI.Format.JCC Hcompta.CLI.Format.Ledger Hcompta.CLI.Lang Hcompta.CLI.Write build-depends: base >= 4.6 && < 5 , ansi-terminal >= 0.4 && < 0.7 , bytestring , containers , Decimal , deepseq -- , directory , ghc-prim , hcompta-jcc , hcompta-ledger , hcompta-lib -- , HUnit , io-memoize >= 1.1 -- NOTE: needed for System.IO.Memoize.once , parsec -- , safe >= 0.2 , semigroups , strict -- , template-haskell , text , time , transformers >= 0.4 && < 0.5 -- NOTE: needed for Control.Monad.Trans.Except Executable hcompta extensions: NoImplicitPrelude ghc-options: -Wall -fno-warn-tabs if flag(threaded) ghc-options: -threaded -rtsopts -with-rtsopts=-N if flag(dev) cpp-options: -DDEVELOPMENT ghc-options: else ghc-options: -O2 if flag(prof) cpp-options: -DPROFILING ghc-options: -fprof-auto if flag(library-only) Buildable: False main-is: Hcompta/CLI/Main.hs hs-source-dirs: . build-depends: base >= 4.6 && < 5 , ansi-terminal >= 0.4 && < 0.7 , bytestring , containers >= 0.5 && < 0.6 -- NOTE: needed for Data.Map.Strict , Decimal , deepseq -- , directory , ghc-prim , hcompta-jcc , hcompta-ledger , hcompta-lib -- , HUnit , io-memoize >= 1.1 -- NOTE: needed for System.IO.Memoize.once , parsec -- , safe >= 0.2 , semigroups , strict -- , template-haskell , text , time , transformers >= 0.4 && < 0.5 -- NOTE: needed for Control.Monad.Trans.Except test-suite Test type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: Test ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures ghc-options: -fno-warn-type-defaults -fno-warn-orphans -- default-language: Haskell2010 build-depends: hcompta-cli , hcompta-jcc , hcompta-ledger , base >= 4.6 && < 5 , Decimal , HUnit -- , safe , test-framework , test-framework-hunit