2010-03-22 04:44:59 +03:00
|
|
|
name: hledger-lib
|
2011-04-18 10:53:50 +04:00
|
|
|
version: 0.14
|
2010-03-22 04:44:59 +03:00
|
|
|
category: Finance
|
2011-04-19 04:50:47 +04:00
|
|
|
synopsis: Reusable types and utilities for the hledger accounting tool and financial apps in general.
|
2010-03-22 04:44:59 +03:00
|
|
|
description:
|
2011-04-19 04:50:47 +04:00
|
|
|
hledger is a haskell port and friendly fork of John Wiegley's ledger accounting tool.
|
|
|
|
This package provides core data types, parsers and utilities used by the hledger tools.
|
|
|
|
It also aims to be a useful library for building h/ledger-compatible tools or unrelated financial apps in haskell.
|
2010-03-22 04:44:59 +03:00
|
|
|
|
|
|
|
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
|
2010-11-26 22:59:23 +03:00
|
|
|
stability: beta
|
2010-03-22 04:44:59 +03:00
|
|
|
tested-with: GHC==6.10
|
2010-09-06 02:49:20 +04:00
|
|
|
cabal-version: >= 1.6
|
2010-03-22 04:44:59 +03:00
|
|
|
build-type: Simple
|
2010-09-10 05:45:12 +04:00
|
|
|
-- data-dir: data
|
2010-03-22 04:44:59 +03:00
|
|
|
-- data-files:
|
|
|
|
-- extra-tmp-files:
|
|
|
|
-- extra-source-files:
|
|
|
|
-- README
|
|
|
|
-- sample.ledger
|
|
|
|
-- sample.timelog
|
|
|
|
|
|
|
|
library
|
2010-07-10 17:58:35 +04:00
|
|
|
-- should set patchlevel here as in Makefile
|
|
|
|
cpp-options: -DPATCHLEVEL=0
|
2010-03-22 04:44:59 +03:00
|
|
|
exposed-modules:
|
2010-05-20 03:08:53 +04:00
|
|
|
Hledger.Data
|
|
|
|
Hledger.Data.Account
|
|
|
|
Hledger.Data.AccountName
|
|
|
|
Hledger.Data.Amount
|
|
|
|
Hledger.Data.Commodity
|
|
|
|
Hledger.Data.Dates
|
|
|
|
Hledger.Data.Transaction
|
|
|
|
Hledger.Data.Journal
|
|
|
|
Hledger.Data.Ledger
|
|
|
|
Hledger.Data.Posting
|
|
|
|
Hledger.Data.TimeLog
|
|
|
|
Hledger.Data.Types
|
|
|
|
Hledger.Data.Utils
|
2010-05-30 23:11:58 +04:00
|
|
|
Hledger.Read
|
2010-11-16 02:26:04 +03:00
|
|
|
Hledger.Read.Utils
|
2010-11-15 10:01:46 +03:00
|
|
|
Hledger.Read.JournalReader
|
|
|
|
Hledger.Read.TimelogReader
|
2010-03-22 04:44:59 +03:00
|
|
|
Build-Depends:
|
|
|
|
base >= 3 && < 5
|
|
|
|
,containers
|
|
|
|
,directory
|
|
|
|
,filepath
|
|
|
|
,mtl
|
|
|
|
,old-locale
|
|
|
|
,old-time
|
|
|
|
,parsec
|
|
|
|
,regexpr >= 0.5.1
|
2010-04-15 02:38:54 +04:00
|
|
|
,safe >= 0.2
|
2010-09-05 22:25:20 +04:00
|
|
|
,split == 0.1.*
|
2010-07-18 00:35:25 +04:00
|
|
|
,time
|
2010-09-06 23:21:34 +04:00
|
|
|
,utf8-string >= 0.3.5 && < 0.4
|
2010-03-22 04:44:59 +03:00
|
|
|
,HUnit
|
|
|
|
|
2010-09-06 02:49:20 +04:00
|
|
|
source-repository head
|
|
|
|
type: darcs
|
|
|
|
location: http://joyful.com/repos/hledger
|
2010-03-22 04:44:59 +03:00
|
|
|
|
|
|
|
-- 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
|