hledger/hledger/hledger.cabal
2014-01-08 15:01:45 -08:00

178 lines
5.8 KiB
Plaintext

name: hledger
-- also in cpp-options below
version: 0.22.1
stability: beta
category: Finance
synopsis: The main command-line interface for the hledger accounting tool.
description:
hledger is a library and set of user tools for working
with financial data (or anything that can be tracked in a
double-entry accounting ledger.) It is a haskell port and
friendly fork of John Wiegley's Ledger. hledger provides
command-line, curses and web interfaces, and aims to be a
reliable, practical tool for daily use.
license: GPL
license-file: LICENSE
author: Simon Michael <simon@joyful.com>
maintainer: Simon Michael <simon@joyful.com>
homepage: http://hledger.org
bug-reports: http://hledger.org/bugs
tested-with: GHC==7.4.2, GHC==7.6.3
cabal-version: >= 1.10
build-type: Simple
-- data-dir: data
-- data-files:
extra-tmp-files:
extra-source-files: tests/suite.hs
-- Cabal-Version: >= 1.9.2
-- Test-Suite test-hledger
-- type: exitcode-stdio-1.0
-- main-is: test-hledger.hs
-- build-depends: base
source-repository head
type: git
location: https://github.com/simonmichael/hledger
flag threaded
Description: Build with support for multithreaded execution
Default: True
library
cpp-options: -DVERSION="0.22.1"
ghc-options: -W
-- should be the same as below
exposed-modules:
Hledger.Cli
Hledger.Cli.Main
Hledger.Cli.Options
Hledger.Cli.Tests
Hledger.Cli.Utils
Hledger.Cli.Version
Hledger.Cli.Add
Hledger.Cli.Balance
Hledger.Cli.Balancesheet
Hledger.Cli.Cashflow
Hledger.Cli.Histogram
Hledger.Cli.Incomestatement
Hledger.Cli.Print
Hledger.Cli.Register
Hledger.Cli.Stats
-- should be the same as below
build-depends:
hledger-lib == 0.22.1
,base >= 4.3 && < 5
-- ,cabal-file-th
,containers
,cmdargs >= 0.10 && < 0.11
,data-pprint >= 0.2.1 && < 0.3
,directory
,filepath
,haskeline >= 0.6 && <= 0.8
,HUnit
,mtl
,old-locale
,old-time
,parsec
,process
,regexpr >= 0.5.1
,safe >= 0.2
,shakespeare-text == 1.0.*
,split >= 0.1 && < 0.3
,text >= 0.11 && < 1.1
,tabular >= 0.2 && < 0.3
,time
,utf8-string >= 0.3.5 && < 0.4
default-language: Haskell2010
-- should depend on the above to avoid double compilation but this is
-- still too complicated as of 2011/6/1 because:
-- - breaks haddock, http://hackage.haskell.org/trac/hackage/ticket/656
-- - library and executable must have different hs-source-dirs
-- - the exe may need to list all the lib's dependencies
-- - how it works seems ghc version dependent
-- leksah is reported to have this working, http://hackage.haskell.org/packages/archive/leksah/0.10.0.4/leksah.cabal
executable hledger
main-is: hledger-cli.hs
-- should be the same as above
other-modules:
Hledger.Cli
Hledger.Cli.Main
Hledger.Cli.Options
Hledger.Cli.Tests
Hledger.Cli.Utils
Hledger.Cli.Version
Hledger.Cli.Add
Hledger.Cli.Balance
Hledger.Cli.Balancesheet
Hledger.Cli.Cashflow
Hledger.Cli.Histogram
Hledger.Cli.Incomestatement
Hledger.Cli.Print
Hledger.Cli.Register
Hledger.Cli.Stats
cpp-options: -DVERSION="0.22.1"
ghc-options: -W
if flag(threaded)
ghc-options: -threaded
-- should be the same as above
build-depends:
hledger-lib == 0.22.1
,base >= 4.3 && < 5
,containers
,cmdargs >= 0.10 && < 0.11
,data-pprint >= 0.2.1 && < 0.3
,directory
,filepath
,haskeline >= 0.6 && <= 0.8
,HUnit
,mtl
,old-locale
,old-time
,parsec
,process
,regexpr >= 0.5.1
,safe >= 0.2
,shakespeare-text == 1.0.*
,split >= 0.1 && < 0.3
,tabular >= 0.2 && < 0.3
,text >= 0.11 && < 1.1
,time
,utf8-string >= 0.3.5 && < 0.4
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
main-is: tests/suite.hs
ghc-options: -Wall
build-depends: hledger-lib
, hledger
, base >= 4.3 && < 5
, cmdargs
, containers
, csv
, data-pprint >= 0.2.1 && < 0.3
, directory
, filepath
, haskeline
, HUnit
, mtl
, old-locale
, old-time
, parsec
, pretty-show >= 1.6.4
, process
, regexpr
, safe
, shakespeare-text
, split
,tabular >= 0.2 && < 0.3
, test-framework
, test-framework-hunit
, text
, time
, transformers
default-language: Haskell2010