No description
Find a file
John Wiegley 78e1ac62cb Reverse the link order of libledger.la and libamounts.la. Apparently this
matters to Ubuntu 8.04, but only when building 'make check'!
2008-08-31 20:54:06 -04:00
contrib Added code for the csv2ledger parser that I use personally. 2008-08-08 19:21:55 -04:00
dist/pkg Committed initial attempt at making a standalone installer for OS X. 2008-08-10 05:16:19 -04:00
doc Several updates to the TODO file. 2008-08-30 16:33:42 -04:00
lib For cppunit builds, run autogen.sh before configure. 2008-08-26 00:10:47 -04:00
lisp
python Moved sources which I did not write from src/ into lib/. 2008-08-09 19:48:23 -04:00
src Output balances when converting to strings, as this is needed by debugging 2008-08-29 04:32:25 -04:00
test As the 'bal' command is working again as it should, one of the regression 2008-08-14 04:15:11 -04:00
.gitignore Added a 'make report', which uses GCOV and LCOV to produce code coverage 2008-08-13 18:15:12 -04:00
.gitmodules Small administrative updates 2008-08-18 16:37:57 -04:00
acprep Added README notes for people using Ubuntu, and made the use of a certain 2008-08-26 03:27:39 -04:00
autogen.sh Added the use of autogen.sh from http://buildconf.brlcad.org/. 'acprep' still 2008-08-14 03:21:29 -04:00
configure.ac Several changes to autoconf and automake files: 2008-08-11 18:35:52 -04:00
Makefile.am Reverse the link order of libledger.la and libamounts.la. Apparently this 2008-08-31 20:54:06 -04:00
README Updated build steps in the README. 2008-08-29 04:30:53 -04:00

	     Hello, and welcome to the Ledger source code!

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.  At this moment, you can get there by one of two commands:

  BETA:     git checkout -b v2.6.1b origin/v2.6.1b

The BETA is what I prefer people use, since I still have a change to fix
major bugs that you find.  Just log them in the track against 2.6.1 and
they'll become a part of my work list.

  RELEASE:  git checkout v2.6.0.90

This is the same release code that you can download via tarball from the
home page.  It has some serious issues dealing with date/time handling,
although at least its major flaws are mostly known by now.

You can jump over to the current active development at any time by using
this command:

  DEVEL:    git checkout master

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

------------------------------------------------------------------------

Now, if you wish to proceed in this venture, you'll need a few
dependencies:

  - PCRE 7.7          -- if you're building BETA or RELEASE

  - Boost 1.35        -- if you're building DEVEL
  - CppUnit 1.12.1    -- if you're building DEVEL

  - Optionally, Python 2.4 or higher
  - Optionally, libexpat or libxml2
  - Optionally, libofx

* MacPorts

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

  sudo port install boost +complete+python25
  sudo port install cppunit expat libofx

* Ubuntu

If you're going to be building with Ubuntu, the command is:

  sudo apt-get install build-essential libtool autoconf automake
  sudo apt-get install texinfo python-dev zlib1g-dev libbz2-dev stow
  sudo apt-get install libgmp3-dev bjam

* Using my Git mirrors

Finally, for the convenience of fellow developers on the master (DEVEL)
branch, you may download and build some of these dependencies quite
easily.  Just run this command:

  git submodule init
  git submodule update
  cd lib
  make                   # it installs stuff into /usr/local/stow

You'll now have a few extra source installations in /usr/local/stow/,
most importantly Boost and CppUnit.

------------------------------------------------------------------------

The next step is preparing your environment for building.  While you can
just use 'autoreconf -fi', I've prepared a script that does a lot of the
footwork for you:

  ./acprep

If you want to run with complete debugging on, as I do, use this:

  ./acprep --devel

Please read the contents of 'acprep' in this case, especially the
section which documents the --devel option.

------------------------------------------------------------------------

Once you have the dependencies installed and the source prepared for
building, just run 'make'.  If you have CppUnit installed, I prefer that
you always run 'make fullcheck', as this will verify Ledger against the
unit tests, the Python unit tests (if applicable), and the regression
tests, for your platform.

If you have extra CPU cycles to burn, try even 'make distcheck', which
provides the most thorough shakedown of a healthy source tree.

------------------------------------------------------------------------

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
  Issue Tracker          http://trac.newartisans.com/ledger
  GitHub project page    http://github.com/jwiegley/ledger/tree/master
  Buildbot display	 http://www.newartisans.com:9090
  Ohloh code analysis	 http://www.ohloh.net/projects/ledger

If you have coding ideas you want to share, the best way is either to
e-mail me a patch (I prefer ttachments 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 message via GitHub asking me to check out
your repository.  I'm only too happy to do so for anyone who takes time
out of their schedule to help the Ledger project.

John