readme updates

This commit is contained in:
Simon Michael 2009-01-17 21:03:34 +00:00
parent b1f4bd8ec3
commit b4bdc926dd
3 changed files with 24 additions and 21 deletions

25
README
View File

@ -3,28 +3,28 @@ hledger - a ledger-compatible text-based accounting tool
Welcome to hledger! Welcome to hledger!
hledger is a minimal haskell clone of John Wiegley's "ledger" text-based hledger is a haskell clone of John Wiegley's "ledger" text-based
accounting tool (http://newartisans.com/software/ledger.html). hledger accounting tool (http://newartisans.com/software/ledger.html).
generates ledger-compatible register & balance reports from a plain text It generates ledger-compatible register & balance reports from a plain
ledger file, and demonstrates a functional implementation of ledger. For text ledger file, and demonstrates a functional implementation of ledger.
more information, see the hledger home page: http://joyful.com/hledger For more information, see hledger's home page: http://joyful.com/hledger
Copyright (c) 2007-2008 Simon Michael <simon@joyful.com> Copyright (c) 2007-2009 Simon Michael <simon@joyful.com>
Released under GPL version 3 or later. Released under GPL version 3 or later.
Installation Installation
------------ ------------
hledger requires GHC. It is known to build with 6.8. hledger requires GHC. It is known to build with 6.8 and 6.10.
With cabal-install Installing with cabal
.................. .....................
If you have cabal-install, in this directory do:: If you have cabal-install, in this directory do::
cabal install cabal install
Manually Installing manually
........ ...................
Otherwise, unpack the latest tarball from Otherwise, unpack the latest tarball from
http://hackage.haskell.org/cgi-bin/hackage-scripts/package/hledger and do:: http://hackage.haskell.org/cgi-bin/hackage-scripts/package/hledger and do::
@ -56,6 +56,9 @@ Here are some commands to try::
hledger reg -- shop hledger reg -- shop
hledger ui hledger ui
hledger looks for your ledger file at ~/.ledger by default. To use a different file,
specify it with -f or the LEDGER environment variable.
Features Features
-------- --------

View File

@ -2,10 +2,10 @@ Name: hledger
Version: 0.2 Version: 0.2
Category: Finance Category: Finance
Synopsis: A ledger-compatible text-based accounting tool. Synopsis: A ledger-compatible text-based accounting tool.
Description: hledger is a minimal haskell clone of John Wiegley's "ledger" text-based Description: hledger is a haskell clone of John Wiegley's "ledger" text-based
accounting tool (http://newartisans.com/software/ledger.html). hledger accounting tool (http://newartisans.com/software/ledger.html).
generates ledger-compatible register & balance reports from a plain text It generates ledger-compatible register & balance reports from a plain
ledger file, and demonstrates a functional implementation of ledger. text ledger file, and demonstrates a functional implementation of ledger.
License: GPL License: GPL
Stability: alpha Stability: alpha
Author: Simon Michael <simon@joyful.com> Author: Simon Michael <simon@joyful.com>

View File

@ -2,14 +2,14 @@
{-| {-|
hledger - a ledger-compatible text-based accounting tool. hledger - a ledger-compatible text-based accounting tool.
Copyright (c) 2007-2008 Simon Michael <simon@joyful.com> Copyright (c) 2007-2009 Simon Michael <simon@joyful.com>
Released under GPL version 3 or later. Released under GPL version 3 or later.
hledger is a minimal haskell clone of John Wiegley's "ledger" text-based hledger is a haskell clone of John Wiegley's "ledger" text-based
accounting tool (http://newartisans.com/software/ledger.html). hledger accounting tool (http://newartisans.com/software/ledger.html).
generates ledger-compatible register & balance reports from a plain text It generates ledger-compatible register & balance reports from a plain
ledger file, and demonstrates a functional implementation of ledger. For text ledger file, and demonstrates a functional implementation of ledger.
more information, see the hledger home page: http://joyful.com/hledger For more information, see hledger's home page: http://joyful.com/hledger
You can use the command line: You can use the command line: