git-annex/doc/install.mdwn

57 lines
2.2 KiB
Text
Raw Normal View History

2011-02-09 04:25:22 +00:00
## OS-specific instructions
* [[OSX]]
* [[Debian]]
* [[Ubuntu]]
2011-06-02 04:51:56 +00:00
* [[Fedora]]
2011-06-26 23:00:46 +00:00
* [[FreeBSD]]
* [[openSUSE]]
2012-01-02 17:44:12 +00:00
* [[ArchLinux]]
* [[NixOS]]
2012-05-02 17:18:21 +00:00
* [[Gentoo]]
* Windows: [[sorry, not possible yet|todo/windows_support]]
2011-02-09 04:25:22 +00:00
2011-07-02 21:29:20 +00:00
## Using cabal
As a haskell package, git-annex can be installed using cabal. For example:
2011-07-02 21:29:20 +00:00
cabal install git-annex --bindir=$HOME/bin
The above downloads the latest release. Alternatively, you can [[download]]
it yourself and [[manually_build_with_cabal|install/cabal]].
2011-07-02 21:29:20 +00:00
## Installation by hand
2011-02-09 04:25:22 +00:00
2010-10-19 20:32:50 +00:00
To build and use git-annex, you will need:
2011-06-02 05:01:14 +00:00
* Haskell stuff
2012-02-04 18:44:03 +00:00
* [The Haskell Platform](http://haskell.org/platform/) (GHC 7.4 or newer)
2011-06-02 05:01:59 +00:00
* [MissingH](http://github.com/jgoerzen/missingh/wiki)
2011-06-02 05:01:14 +00:00
* [pcre-light](http://hackage.haskell.org/package/pcre-light)
* [utf8-string](http://hackage.haskell.org/package/utf8-string)
2011-06-02 05:01:59 +00:00
* [SHA](http://hackage.haskell.org/package/SHA)
* [dataenc](http://hackage.haskell.org/package/dataenc)
* [monad-control](http://hackage.haskell.org/package/monad-control)
* [lifted-base](http://hackage.haskell.org/package/lifted-base)
2011-06-02 05:01:14 +00:00
* [TestPack](http://hackage.haskell.org/cgi-bin/hackage-scripts/package/testpack)
* [QuickCheck 2](http://hackage.haskell.org/package/QuickCheck)
* [HTTP](http://hackage.haskell.org/package/HTTP)
* [hS3](http://hackage.haskell.org/package/hS3) (optional)
* [json](http://hackage.haskell.org/package/json)
* [IfElse](http://hackage.haskell.org/package/IfElse)
* [bloomfilter](http://hackage.haskell.org/package/bloomfilter)
* [edit-distance](http://hackage.haskell.org/package/edit-distance)
2011-06-02 05:02:57 +00:00
* Shell commands
* [git](http://git-scm.com/)
* [uuid](http://www.ossp.org/pkg/lib/uuid/)
(or `uuidgen` from util-linux)
* [xargs](http://savannah.gnu.org/projects/findutils/)
* [rsync](http://rsync.samba.org/)
* [wget](http://www.gnu.org/software/wget/) or [curl](http://http://curl.haxx.se/) (optional, but recommended)
2011-06-02 05:02:57 +00:00
* [sha1sum](ftp://ftp.gnu.org/gnu/coreutils/) (optional, but recommended;
a sha1 command will also do)
* [gpg](http://gnupg.org/) (optional; needed for encryption)
* [ikiwiki](http://ikiwiki.info) (optional; used to build the docs)
2010-10-29 17:59:48 +00:00
Then just [[download]] git-annex and run: `make; make install`