2011-02-09 00:25:22 -04:00
|
|
|
## OS-specific instructions
|
|
|
|
|
|
|
|
* [[OSX]]
|
|
|
|
* [[Debian]]
|
|
|
|
* [[Ubuntu]]
|
2011-06-02 00:51:56 -04:00
|
|
|
* [[Fedora]]
|
2011-06-26 19:00:46 -04:00
|
|
|
* [[FreeBSD]]
|
2011-12-24 00:13:43 +00:00
|
|
|
* [[openSUSE]]
|
2012-01-02 13:44:12 -04:00
|
|
|
* [[ArchLinux]]
|
2012-01-13 18:49:56 +00:00
|
|
|
* [[NixOS]]
|
2012-01-13 13:55:14 -04:00
|
|
|
* Windows: [[sorry, not possible yet|todo/windows_support]]
|
2011-02-09 00:25:22 -04:00
|
|
|
|
2011-07-02 17:29:20 -04:00
|
|
|
## Using cabal
|
|
|
|
|
2011-09-25 14:26:05 -04:00
|
|
|
As a haskell package, git-annex can be installed using cabal. For example:
|
2011-07-02 17:29:20 -04:00
|
|
|
|
|
|
|
cabal install git-annex --bindir=$HOME/bin
|
|
|
|
|
|
|
|
## Installation by hand
|
2011-02-09 00:25:22 -04:00
|
|
|
|
2010-10-19 16:32:50 -04:00
|
|
|
To build and use git-annex, you will need:
|
|
|
|
|
2011-06-02 01:01:14 -04:00
|
|
|
* Haskell stuff
|
2012-02-04 14:44:03 -04:00
|
|
|
* [The Haskell Platform](http://haskell.org/platform/) (GHC 7.4 or newer)
|
2011-06-02 01:01:59 -04:00
|
|
|
* [MissingH](http://github.com/jgoerzen/missingh/wiki)
|
2011-06-02 01:01:14 -04:00
|
|
|
* [pcre-light](http://hackage.haskell.org/package/pcre-light)
|
|
|
|
* [utf8-string](http://hackage.haskell.org/package/utf8-string)
|
2011-06-02 01:01:59 -04:00
|
|
|
* [SHA](http://hackage.haskell.org/package/SHA)
|
|
|
|
* [dataenc](http://hackage.haskell.org/package/dataenc)
|
2011-07-07 19:10:42 -04:00
|
|
|
* [monad-control](http://hackage.haskell.org/package/monad-control)
|
2011-12-30 20:06:15 -04:00
|
|
|
* [lifted-base](http://hackage.haskell.org/package/lifted-base)
|
2011-06-02 01:01:14 -04:00
|
|
|
* [TestPack](http://hackage.haskell.org/cgi-bin/hackage-scripts/package/testpack)
|
|
|
|
* [QuickCheck 2](http://hackage.haskell.org/package/QuickCheck)
|
2011-07-04 19:31:45 -04:00
|
|
|
* [HTTP](http://hackage.haskell.org/package/HTTP)
|
2012-01-05 23:14:10 -04:00
|
|
|
* [hS3](http://hackage.haskell.org/package/hS3)
|
2011-09-01 15:16:31 -04:00
|
|
|
* [json](http://hackage.haskell.org/package/json)
|
2012-01-24 15:28:13 -04:00
|
|
|
* [IfElse](http://hackage.haskell.org/package/IfElse)
|
2012-03-12 16:18:14 -04:00
|
|
|
* [bloomfilter](http://hackage.haskell.org/package/bloomfilter)
|
2011-06-02 01:02:57 -04: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/)
|
2011-08-27 12:31:50 -04:00
|
|
|
* [wget](http://www.gnu.org/software/wget/) or [curl](http://http://curl.haxx.se/) (optional, but recommended)
|
2011-06-02 01:02:57 -04: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 13:59:48 -04:00
|
|
|
|
2011-03-30 01:32:05 -04:00
|
|
|
Then just [[download]] git-annex and run: `make; make install`
|