diff options
author | Joey Hess <joey@kitenet.net> | 2012-11-28 14:03:35 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-11-28 14:03:35 -0400 |
commit | 53e327ae4aaba5425f3649867d9f9a709d5c7e6a (patch) | |
tree | ad11a4422648990adde3a3fe515d4477f45bae9c /doc/install/cabal.mdwn | |
parent | b95c0cdc4efb3cd853d5d9e8553346dfc1fcb311 (diff) |
update cabal install instructions to get c2hs installed for gnuidn
Diffstat (limited to 'doc/install/cabal.mdwn')
-rw-r--r-- | doc/install/cabal.mdwn | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/install/cabal.mdwn b/doc/install/cabal.mdwn index 180208211..c4c388e0d 100644 --- a/doc/install/cabal.mdwn +++ b/doc/install/cabal.mdwn @@ -1,7 +1,7 @@ As a haskell package, git-annex can be installed using cabal. For example: cabal update - cabal install git-annex --bindir=$HOME/bin + cabal install c2hs git-annex --bindir=$HOME/bin The above downloads the latest release and installs it into a ~/bin/ directory, which you can put in your PATH. @@ -10,6 +10,7 @@ But maybe you want something newer (or older). Then [[download]] the version you want, and use cabal as follows inside its source tree: cabal update + cabal install c2hs --bindir=$HOME/bin cabal install --only-dependencies cabal configure cabal build |