mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-12 19:08:34 +03:00
09b44176ce
This requires ghc >= 6.12.
209 lines
6.1 KiB
Plaintext
209 lines
6.1 KiB
Plaintext
name: hledger
|
|
version: 0.10
|
|
category: Finance
|
|
synopsis: A command-line (or curses or web-based) double-entry accounting tool.
|
|
description:
|
|
hledger reads a plain text ledger file or timelog
|
|
describing your transactions and displays precise
|
|
balance and register reports via command-line, curses
|
|
or web interface. It is a remix, in haskell, of John
|
|
Wiegley's excellent c++ ledger. hledger aims to be a
|
|
practical, accessible tool for end users and a useful
|
|
library for finance-minded haskell programmers.
|
|
|
|
license: GPL
|
|
license-file: LICENSE
|
|
author: Simon Michael <simon@joyful.com>
|
|
maintainer: Simon Michael <simon@joyful.com>
|
|
homepage: http://hledger.org
|
|
bug-reports: http://code.google.com/p/hledger/issues
|
|
stability: experimental
|
|
tested-with: GHC==6.10
|
|
cabal-version: >= 1.2
|
|
build-type: Custom
|
|
data-dir: data
|
|
data-files:
|
|
web/style.css
|
|
extra-tmp-files:
|
|
extra-source-files:
|
|
README.rst
|
|
README2.rst
|
|
MANUAL.markdown
|
|
NEWS.rst
|
|
CONTRIBUTORS.rst
|
|
data/sample.ledger
|
|
data/sample.timelog
|
|
data/sample.rules
|
|
|
|
flag vty
|
|
description: enable the curses ui
|
|
default: False
|
|
|
|
flag web
|
|
description: enable the web ui (using loli, hack, simpleserver)
|
|
default: False
|
|
|
|
flag webyesod
|
|
description: enable the web ui (using yesod, wai, simpleserver)
|
|
default: False
|
|
|
|
flag chart
|
|
description: enable the pie chart generation
|
|
default: False
|
|
|
|
executable hledger
|
|
main-is: hledger.hs
|
|
other-modules:
|
|
Paths_hledger
|
|
Hledger.Cli.Main
|
|
Hledger.Cli.Options
|
|
Hledger.Cli.Tests
|
|
Hledger.Cli.Utils
|
|
Hledger.Cli.Version
|
|
Hledger.Cli.Commands.Add
|
|
Hledger.Cli.Commands.All
|
|
Hledger.Cli.Commands.Balance
|
|
Hledger.Cli.Commands.Convert
|
|
Hledger.Cli.Commands.Histogram
|
|
Hledger.Cli.Commands.Print
|
|
Hledger.Cli.Commands.Register
|
|
Hledger.Cli.Commands.Stats
|
|
build-depends:
|
|
hledger-lib >= 0.10
|
|
,HUnit
|
|
,base >= 3 && < 5
|
|
,containers
|
|
,csv
|
|
,directory
|
|
,filepath
|
|
,mtl
|
|
,old-locale
|
|
,old-time
|
|
,parsec
|
|
,process
|
|
,regexpr >= 0.5.1
|
|
,safe >= 0.2
|
|
,testpack >= 1 && < 2
|
|
,time
|
|
,utf8-string >= 0.3
|
|
|
|
-- should set patchlevel here as in Makefile
|
|
cpp-options: -DPATCHLEVEL=0
|
|
|
|
if flag(vty)
|
|
cpp-options: -DVTY
|
|
other-modules:Hledger.Cli.Commands.Vty
|
|
build-depends:
|
|
vty >= 4.0.0.1
|
|
|
|
if flag(web)
|
|
cpp-options: -DWEB
|
|
other-modules:Hledger.Cli.Commands.Web
|
|
build-depends:
|
|
hsp
|
|
,hsx
|
|
,xhtml >= 3000.2
|
|
,loli
|
|
,io-storage
|
|
,hack-contrib
|
|
,hack
|
|
,hack-handler-simpleserver
|
|
,HTTP >= 4000.0
|
|
,applicative-extras
|
|
|
|
if flag(webyesod)
|
|
cpp-options: -DWEBYESOD
|
|
other-modules:Hledger.Cli.Commands.WebYesod
|
|
build-depends:
|
|
bytestring >= 0.9.1 && < 0.9.2
|
|
,hamlet >= 0.3.1 && < 0.4
|
|
,io-storage >= 0.3 && < 0.4
|
|
,wai >= 0.1 && < 0.2
|
|
,yesod >= 0.3.1 && < 0.4
|
|
|
|
if flag(chart)
|
|
cpp-options: -DCHART
|
|
other-modules:Hledger.Cli.Commands.Chart
|
|
build-depends:
|
|
Chart >= 0.11
|
|
,colour
|
|
|
|
library
|
|
exposed-modules:
|
|
Hledger.Cli.Main
|
|
Hledger.Cli.Options
|
|
Hledger.Cli.Tests
|
|
Hledger.Cli.Utils
|
|
Hledger.Cli.Version
|
|
Hledger.Cli.Commands.Add
|
|
Hledger.Cli.Commands.All
|
|
Hledger.Cli.Commands.Balance
|
|
Hledger.Cli.Commands.Convert
|
|
Hledger.Cli.Commands.Histogram
|
|
Hledger.Cli.Commands.Print
|
|
Hledger.Cli.Commands.Register
|
|
Hledger.Cli.Commands.Stats
|
|
build-depends:
|
|
hledger-lib >= 0.10
|
|
,HUnit
|
|
,base >= 3 && < 5
|
|
,containers
|
|
,csv
|
|
,directory
|
|
,filepath
|
|
,mtl
|
|
,old-locale
|
|
,old-time
|
|
,parsec
|
|
,process
|
|
,regexpr >= 0.5.1
|
|
,safe >= 0.2
|
|
,testpack >= 1 && < 2
|
|
,time
|
|
,utf8-string >= 0.3
|
|
|
|
-- should set patchlevel here as in Makefile
|
|
cpp-options: -DPATCHLEVEL=0
|
|
|
|
if flag(vty)
|
|
cpp-options: -DVTY
|
|
exposed-modules:Hledger.Cli.Commands.Vty
|
|
build-depends:
|
|
vty >= 4.0.0.1
|
|
|
|
if flag(web)
|
|
cpp-options: -DWEB
|
|
exposed-modules:Hledger.Cli.Commands.Web
|
|
build-depends:
|
|
hsp
|
|
,hsx
|
|
,xhtml >= 3000.2
|
|
,loli
|
|
,io-storage
|
|
,hack-contrib
|
|
,hack
|
|
,hack-handler-simpleserver
|
|
,HTTP >= 4000.0
|
|
,applicative-extras
|
|
|
|
if flag(chart)
|
|
cpp-options: -DCHART
|
|
exposed-modules:Hledger.Cli.Commands.Chart
|
|
build-depends:
|
|
Chart >= 0.11
|
|
,colour
|
|
|
|
-- source-repository head
|
|
-- type: darcs
|
|
-- location: http://joyful.com/repos/hledger
|
|
-- disabled for now due to:
|
|
-- The 'source-repository' section is new in Cabal-1.6. Unfortunately it messes
|
|
-- up the parser in earlier Cabal versions so you need to specify 'cabal-version:
|
|
-- >= 1.6'.
|
|
|
|
-- cf http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html
|
|
|
|
-- Additional dependencies:
|
|
-- required for make test: test-framework, test-framework-hunit
|
|
-- required for make bench: tabular-0.1
|