2008-10-01 11:56:21 +04:00
|
|
|
Name: hledger
|
2009-02-26 20:37:46 +03:00
|
|
|
-- updated by makefile, see notes there
|
|
|
|
Version: 0.3.98
|
2008-10-01 11:56:21 +04:00
|
|
|
Category: Finance
|
|
|
|
Synopsis: A ledger-compatible text-based accounting tool.
|
2009-01-18 00:03:34 +03:00
|
|
|
Description: hledger is a haskell clone of John Wiegley's "ledger" text-based
|
|
|
|
accounting tool (http://newartisans.com/software/ledger.html).
|
|
|
|
It generates ledger-compatible register & balance reports from a plain
|
|
|
|
text ledger file, and demonstrates a functional implementation of ledger.
|
2008-10-01 11:56:21 +04:00
|
|
|
License: GPL
|
2008-11-24 01:30:36 +03:00
|
|
|
Stability: beta
|
2008-10-01 11:56:21 +04:00
|
|
|
Author: Simon Michael <simon@joyful.com>
|
|
|
|
Maintainer: Simon Michael <simon@joyful.com>
|
2008-10-18 02:04:28 +04:00
|
|
|
Homepage: http://joyful.com/hledger
|
2008-10-01 11:56:21 +04:00
|
|
|
Tested-With: GHC
|
|
|
|
Build-Type: Simple
|
2008-10-01 12:42:08 +04:00
|
|
|
License-File: LICENSE
|
2008-10-01 12:51:08 +04:00
|
|
|
Extra-Source-Files: README sample.ledger
|
2008-10-01 11:56:21 +04:00
|
|
|
Extra-Tmp-Files:
|
|
|
|
Cabal-Version: >= 1.2
|
2009-01-20 06:48:05 +03:00
|
|
|
Flag vty
|
|
|
|
description: Build vty-based text ui (requires vty, not available on windows)
|
|
|
|
default: False
|
2008-10-01 11:56:21 +04:00
|
|
|
|
|
|
|
Executable hledger
|
|
|
|
Main-Is: hledger.hs
|
2009-01-20 06:48:05 +03:00
|
|
|
Build-Depends: base,
|
2009-01-17 20:48:17 +03:00
|
|
|
containers,
|
|
|
|
haskell98,
|
|
|
|
directory,
|
|
|
|
parsec,
|
|
|
|
regex-compat,
|
|
|
|
regexpr>=0.5.1,
|
|
|
|
old-locale,
|
|
|
|
time,
|
|
|
|
HUnit,
|
|
|
|
mtl,
|
2009-01-19 21:26:21 +03:00
|
|
|
bytestring
|
2009-01-20 06:48:05 +03:00
|
|
|
Other-Modules: BalanceCommand
|
2008-10-10 08:05:46 +04:00
|
|
|
Options
|
|
|
|
PrintCommand
|
|
|
|
RegisterCommand
|
|
|
|
Setup
|
|
|
|
Tests
|
2008-10-16 01:38:55 +04:00
|
|
|
Utils
|
2008-10-10 08:05:46 +04:00
|
|
|
Ledger
|
|
|
|
Ledger.Account
|
|
|
|
Ledger.AccountName
|
|
|
|
Ledger.Amount
|
2008-10-16 01:38:55 +04:00
|
|
|
Ledger.Commodity
|
2008-11-23 22:55:50 +03:00
|
|
|
Ledger.Dates
|
2008-10-10 08:05:46 +04:00
|
|
|
Ledger.Entry
|
|
|
|
Ledger.RawLedger
|
|
|
|
Ledger.Ledger
|
|
|
|
Ledger.RawTransaction
|
|
|
|
Ledger.Parse
|
|
|
|
Ledger.TimeLog
|
|
|
|
Ledger.Transaction
|
|
|
|
Ledger.Types
|
|
|
|
Ledger.Utils
|
2009-01-20 06:48:05 +03:00
|
|
|
if flag(vty)
|
|
|
|
Build-Depends:vty>=3.1.8.2
|
|
|
|
Other-Modules:UICommand
|
|
|
|
cpp-options: -DVTY
|
2008-10-01 11:56:21 +04:00
|
|
|
|
2009-01-20 06:48:05 +03:00
|
|
|
Library
|
2008-11-11 00:32:13 +03:00
|
|
|
Build-Depends: base, containers, haskell98, directory, parsec, regex-compat,
|
|
|
|
old-locale, time, HUnit
|
2009-01-20 06:48:05 +03:00
|
|
|
Exposed-modules:Ledger
|
2008-11-11 00:32:13 +03:00
|
|
|
Ledger.Account
|
|
|
|
Ledger.AccountName
|
|
|
|
Ledger.Amount
|
|
|
|
Ledger.Commodity
|
2008-11-23 22:55:50 +03:00
|
|
|
Ledger.Dates
|
2008-11-11 00:32:13 +03:00
|
|
|
Ledger.Entry
|
|
|
|
Ledger.RawLedger
|
|
|
|
Ledger.Ledger
|
|
|
|
Ledger.RawTransaction
|
|
|
|
Ledger.Parse
|
|
|
|
Ledger.TimeLog
|
|
|
|
Ledger.Transaction
|
|
|
|
Ledger.Types
|
|
|
|
Ledger.Utils
|