hledger/hledger.cabal

91 lines
2.9 KiB
Plaintext
Raw Normal View History

2008-10-01 11:56:21 +04:00
Name: hledger
-- 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
Flag vty
description: Build vty-based text ui (requires vty, not available on windows)
default: False
Flag ansi
description: Build ansi-based text ui (requires ansi-terminal)
default: False
2008-10-01 11:56:21 +04:00
Executable hledger
Main-Is: hledger.hs
Build-Depends: base,
containers,
haskell98,
directory,
parsec,
regex-compat,
regexpr>=0.5.1,
old-locale,
time,
HUnit,
mtl,
bytestring
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
if flag(vty)
Build-Depends:vty>=3.1.8.2
Other-Modules:UICommand
cpp-options: -DVTY
if flag(ansi)
Build-Depends:ansi-terminal
Other-Modules:ANSICommand
cpp-options: -DANSI
2008-10-01 11:56:21 +04:00
Library
2008-11-11 00:32:13 +03:00
Build-Depends: base, containers, haskell98, directory, parsec, regex-compat,
old-locale, time, HUnit
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