No description
Find a file
thdox e422b41600 Library GMP is not yet ready for GCC 4.9, as described at bottom of page
http://gcc.gnu.org/gcc-4.9/porting_to.html

See extract below:

The <cstddef> header was updated for C++11 support and this breaks some
libraries which misuse macros meant for internal use by GCC only. For
instance with GMP versions up to 5.1.3, you may see:

/usr/include/c++/4.9.0/cstddef:51:11: error: ‘::max_align_t’ has not been declared
   using ::max_align_t;
           ^

Another possible error is:

someheader.h:99:13: error: ‘ptrdiff_t’ does not name a type

A workaround until libraries get updated is to include <cstddef> or
<stddef.h> before any headers from that library.
2014-05-11 11:14:49 +02:00
contrib Add script to generate commodities from ISO 4217 2014-05-08 12:15:47 +02:00
doc fix typo 2014-05-10 15:50:28 +02:00
lib Replace sha1.cc with boost::uuid::details::sha1 2014-04-17 14:27:21 -05:00
lisp Refactor macros in ledger-context.el to byte compile cleanly 2014-05-09 21:11:01 +01:00
python Fix python demo: EUROPEAN was changed to DECIMAL_COMMA 2010-06-13 17:49:56 -04:00
src Library GMP is not yet ready for GCC 4.9, as described at bottom of page 2014-05-11 11:14:49 +02:00
test Add more --pivot tests 2014-05-11 10:00:53 +02:00
tools gendocs: use hombrew texinfo on mac if installed 2014-04-27 10:04:05 +02:00
.dir-locals.el Don't default fill-column to 8 in Emacs 2013-12-11 12:52:58 +00:00
.gitignore Merge pull request #272 from merriam/master 2014-04-05 07:05:16 -07:00
.gitmodules Update utfcpp submodule reference to ledger/utfcpp 2012-11-26 12:54:23 -06:00
.travis.yml Add URL to Travis CI environment documentation 2014-04-23 13:26:25 +02:00
acprep Restore -DBUILD_DIR 2014-05-07 20:52:37 +00:00
CMakeLists.txt Fix build for building with g++ 4.8 2014-05-07 20:49:45 +00:00
default.nix Fix build for building with g++ 4.8 2014-05-07 20:49:45 +00:00
README-1ST remove version name for boost in aptitude command 2014-03-25 20:55:02 +01:00
README.md Merge pull request #262 from merriam/master 2014-03-27 18:22:50 -07:00

Build Status

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.

Ledger uses text files for input. It reads the files and generates reports; there is no other database or stored state. To use Ledger, you create a file of your account names and transactions, run from the command line with some options to specify input and requested reports, and get output. The output is generally plain text, though you could generate a graph or html instead. Ledger is simple in concept, surprisingly rich in ability, and easy to use.

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/ledger/ledger.git
cd ledger && ./acprep update  # Update to the latest, configure, make

Now try your first ledger command:

./ledger -f test/input/sample.dat reg

For help on keeping your journal have a look at the documentation and the wiki (Also see the “Resources” section at the end of this file). An emacs mode for ledger files can be found in the lisp directory and a vim plugin is located in the ledger/vim-ledger repository.

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.

RELEASEgit checkout v2.6.3
CURRENTgit checkout maint
BETAgit checkout -b master origin/master
ALPHAgit checkout -b next origin/next

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. The easiest way to get them for your platform is to run this handy Python script:

./acprep dependencies

If that doesn't completely work, here are the dependencies for building the current master branch:

Boost1.35
GMP4.2.2
MPFR2.4.0
utfcpp2.3.4
gettext0.17optional
libedit20090111-3.0optional
Python2.4optional
doxygen1.5.7.1optional, for make docs
graphviz2.20.3optional, for make docs
texinfo4.13optional, for make docs
lcov1.6optional, for make report, used with /./acprep gcov
sloccount2.26optional, for make sloc

And for building the current maint branch:

GMP4.2.2
pcre7.7
libofx0.8.3optional
expat2.0.1optional
libxml22.7.2optional

MacPorts

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

sudo port install -f cmake python26
    libiconv +universal zlib +universal gmp +universal
    mpfr +universal ncurses +universal ncursesw +universal
    gettext +universal libedit +universal boost-jam
    boost +st+python26+icu texlive doxygen graphviz
    texinfo lcov sloccount

Ubuntu

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

sudo apt-get install build-essential cmake zlib1g-dev libbz2-dev
     python-dev gettext libgmp3-dev libmpfr-dev libboost-dev
     libboost-regex-dev libboost-date-time-dev
     libboost-filesystem-dev libboost-python-dev texinfo lcov
     sloccount libboost-iostreams-dev libboost-test-dev

Or, for Ubuntu Karmic:

sudo apt-get install build-essential cmake texinfo python-dev zlib1g-dev
     libbz2-dev libgmp3-dev bjam gettext cvs libboost-dev
     libboost-regex-dev libboost-date-time-dev
     libboost-filesystem-dev libmpfr-dev

Debian

Debian squeeze (6.0): the version of boost in squeeze is too old for ledger and unfortunately no backport is available at the moment.

Debian wheezy (7.0) contains all components needed to build ledger. You can install all required build dependencies using the following command:

sudo apt-get install build-essential cmake autopoint texinfo python-dev \
     zlib1g-dev libbz2-dev libgmp3-dev gettext libmpfr-dev \
     libboost-date-time-dev libboost-filesystem-dev \
     libboost-graph-dev libboost-iostreams-dev \
     libboost-python-dev libboost-regex-dev libboost-test-dev

Building

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

./acprep update
# or, if you want to use the Boost libraries with suffix -mt, install in
# $HOME/local and build with 2 processes in parallel
./acprep update --boost-suffix=-mt --prefix=$HOME/local -j2

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

You can run make check to confirm the result, and make install to install.

Resources

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

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.