author: Julien Moutinho -- bug-reports: http://bug.autogeree.net/hcompta build-type: Simple cabal-version: >= 1.8 category: Finance -- data-dir: data -- data-files: description: Ledger support for Hcompta. extra-source-files: extra-tmp-files: -- homepage: http://pad.autogeree.net/hcompta license: GPL-3 license-file: COPYING maintainer: Julien Moutinho name: hcompta-ledger stability: experimental synopsis: hcompta tested-with: GHC==7.10.3 version: 1.201608 Source-Repository head location: git://git.autogeree.net/hcompta type: git Flag dev Default: False Description: Turn on development settings. Manual: True Flag dump Default: False Description: Dump some intermediate files. Manual: True Flag prof Default: False Description: Turn on profiling settings. Manual: True Flag threaded Default: False Description: Enable threads. Manual: True Library extensions: NoImplicitPrelude ghc-options: -Wall -fno-warn-tabs if flag(dev) cpp-options: -DDEVELOPMENT ghc-options: if flag(prof) cpp-options: -DPROFILING ghc-options: -fprof-auto if flag(dump) ghc-options: -ddump-simpl -ddump-stg -ddump-to-file -- default-language: Haskell2010 exposed-modules: Hcompta.Ledger Hcompta.Ledger.Account Hcompta.Ledger.Amount Hcompta.Ledger.Chart Hcompta.Ledger.Journal Hcompta.Ledger.Lib.FilePath Hcompta.Ledger.Lib.Parsec Hcompta.Ledger.Posting Hcompta.Ledger.Read Hcompta.Ledger.Transaction Hcompta.Ledger.Write build-depends: base >= 4.6 && < 5 , ansi-terminal >= 0.4 && < 0.7 , array , containers >= 0.5 && < 0.6 -- NOTE: needed for Data.Map.Strict , Decimal , deepseq , directory , filepath , fingertree , hcompta-lib , integer-gmp -- , lens -- , mmorph -- , mtl >= 2.0 , parsec >= 3.1.2 && < 4 -- NOTE: needed for Text.Parsec.Text , parsec-error-custom , regex-base , regex-tdfa , regex-tdfa-replace , regex-tdfa-text -- , safe >= 0.2 , safe-exceptions , semigroups , strict , text , time , transformers >= 0.4 && < 0.5 -- NOTE: needed for Control.Monad.Trans.Except , treemap , walderleijen-ansi-text Test-Suite hcompta-ledger-test type: exitcode-stdio-1.0 -- default-language: Haskell2010 extensions: NoImplicitPrelude ghc-options: -Wall -fno-warn-tabs -main-is Test hs-source-dirs: Hcompta/Ledger main-is: Test.hs other-modules: Read.Test -- Write.Test if flag(threaded) ghc-options: -threaded -rtsopts -with-rtsopts=-N if flag(dev) cpp-options: -DDEVELOPMENT ghc-options: if flag(prof) cpp-options: -DPROFILING ghc-options: -fprof-auto build-depends: base >= 4.6 && < 5 , containers >= 0.5 && < 0.6 , Decimal , hcompta-lib , hcompta-ledger , parsec >= 3.1.2 && < 4 -- NOTE: needed for Text.Parsec.Text , parsec-error-custom , semigroups , strict , tasty >= 0.11 , tasty-hunit , text , time , transformers >= 0.4 && < 0.5 , treemap , walderleijen-ansi-text