public
Description: A double-entry accounting system with a command-line reporting interface
Homepage: http://www.newartisans.com/software/ledger.html
Clone URL: git://github.com/jwiegley/ledger.git
ledger /
name age message
file .gitignore Wed Feb 25 19:18:43 -0800 2009 Added ignoring of build products back to .gitig... [drewr]
file .gitmodules Thu Feb 12 21:52:48 -0800 2009 Removed CppUnit submodule reference This libra... [jwiegley]
file Makefile.am Fri Jun 26 08:52:41 -0700 2009 The --download option is now fully restored [jwiegley]
file README.textile Mon Mar 09 18:51:02 -0700 2009 Rewrote acprep in Python and improved the build [jwiegley]
file acprep Mon Jun 22 07:59:34 -0700 2009 Upgraded Boost version reference to 1.39 [jwiegley]
file autogen.sh Sat Mar 07 00:14:11 -0800 2009 make release-distcheck works again [jwiegley]
file configure.ac Mon Mar 09 18:51:02 -0700 2009 Rewrote acprep in Python and improved the build [jwiegley]
directory contrib/ Tue Jun 23 18:44:07 -0700 2009 Restored --download, although not done yet The... [jwiegley]
directory dist/ Fri Jan 30 15:27:19 -0800 2009 Updated the MacPorts Portfile for 3.0. [jwiegley]
directory doc/ Sun Mar 15 01:05:06 -0700 2009 Fixed a bug in the man page [jwiegley]
directory lib/ Mon Jun 22 07:59:34 -0700 2009 Upgraded Boost version reference to 1.39 [jwiegley]
directory lisp/ Wed Jun 17 05:07:38 -0700 2009 Change reconcile-mode to look for either <stdin... [Chris Gray]
directory python/ Tue Mar 03 10:40:36 -0800 2009 Removed python/interp.py, for "ledger python" [jwiegley]
directory src/ Fri Jun 26 17:48:41 -0700 2009 Added debug code "option.names" Use "--debug o... [jwiegley]
directory test/ Fri Jun 26 17:45:31 -0700 2009 Improved usefulness of the "print --anon" output [jwiegley]
directory tools/ Mon Mar 09 18:51:02 -0700 2009 Rewrote acprep in Python and improved the build [jwiegley]

Ledger: Command-Line Accounting

Ledger is a powerful, double-entry accounting system that is accessed from the UNIX command-line. This may put off some users, since there is no flashy UI, but for those who want unparalleled reporting access to their data there are few alternatives.

For the Impatient

I know, you just want to build and play. If you have all the dependencies installed (see below), then simply do this:

git clone git://github.com/jwiegley/ledger.git
cd ledger && ./acprep && make check

Now try your first ledger command:

./ledger -f doc/sample.dat reg

To the Rest

If you’re reading this file, you have in your hands the Bleeding Edge. This may very well not be what you want, since it’s not guaranteed to be in a functionally complete state. It’s under active development, and may change in any way at any time.

What you may prefer is the current stable release, or the current beta branch. The BETA is what I prefer people use, since I still have a chance to fix major bugs that you find. Just e-mail me, or post to the mailing list, they’ll become a part of my work list.

CURRENT git checkout master
BETA git checkout -b maint origin/maint
RELEASE git checkout v2.6.1

There are also several topic branches which contain experimental features, though none of these are guaranteed to compile. Best to chat with me on IRC or via the mailing list before going too much further with those.

Dependencies

If you wish to proceed in this venture, you’ll need a few dependencies:

For building the current master branch

Library Min.Ver. When needed
Boost 1.35 or higher
GMP 4.2.2
MPFR 2.4.0
gettext 0.17 optional
libedit 20090111-3.0 optional
Python 2.4 or higher optional
cppunit 1.12.1 optional, for make check
doxygen 1.5.7.1 optional, for make docs
graphviz 2.20.3 optional, for make docs
texinfo 4.13 optional, for make docs
lcov 1.6 optional, for make report, used with ./acprep gcov
sloccount 2.26 optional, for make sloc

For building the beta or release branches

Library Min.Ver. When needed
GMP 4.2.2
pcre 7.7
libofx 0.8.3 optional
expat 2.0.1 optional
libxml2 2.7.2 optional

MacPorts

If you build stuff using MacPorts, as I do, here is what you would run:

sudo port install boost +python25+st gmp mpfr gettext libedit \
     cppunit texlive doxygen graphviz texinfo lcov            \
     sloccount pcre libofx expat

You can even just install the current Ledger RELEASE directly:

sudo port install ledger

Ubuntu

If you’re going to be build on Ubuntu, sudo apt-get install ... the following packages (current as of Ubuntu Hardy):

sudo apt-get install build-essential libtool autoconf automake   \
     texinfo python-dev zlib1g-dev libbz2-dev stow libgmp3-dev   \
     bjam libboost1.35-dev libboost-regex1.35-dev                \
     libboost-date-time1.35-dev libboost-filesystem1.35-dev

Preparing the Build

The next step is preparing your environment for building. While you can use autogen.sh, I’ve prepared a script that does a lot more of the footwork for you:

./acprep

Please read the contents of config.log if the configure step fails. Also, see the help command to acprep, which explains some of its many options. It’s pretty much the only command I run for configuring, building and testing Ledger.

Building

Once you have the dependencies installed and the source prepared for building, run make check to get things started and confirm the result.

If you have extra CPU cycles to burn, try ./acprep proof, which provides the most thorough shakedown of a healthy source tree.

Resources

Now that you’re up and running, here are a few resources to keep in mind:

Home page http://www.newartisans.com/software/ledger.html
IRC channel #ledger on irc.freenode.net
Mailing List / Forum http://groups.google.com/group/ledger-cli
GitHub project page http://github.com/jwiegley/ledger
Buildbot status http://www.newartisans.com:9090
Ohloh code analysis http://www.ohloh.net/projects/ledger

If you have ideas you’d like to share, the best way is either to e-mail me a patch (I prefer attachments over pasted text), or to get an account on GitHub. Once you do, fork the Ledger project, hack as much as you like, then send me a pull request via GitHub.