2012-07-24 11:14:36 -04:00
|
|
|
git-annex is recently finding its way into Fedora.
|
|
|
|
|
|
|
|
* [Status of getting a Fedora package](https://bugzilla.redhat.com/show_bug.cgi?id=662259)
|
|
|
|
* [Koji build for F17](http://koji.fedoraproject.org/koji/buildinfo?buildID=328654)
|
|
|
|
* [Koji build for F16](http://koji.fedoraproject.org/koji/buildinfo?buildID=328656)
|
|
|
|
|
|
|
|
Installation recipe for Fedora 14 thruough 15.
|
2011-06-02 00:51:56 -04:00
|
|
|
|
|
|
|
<pre>
|
2012-07-20 11:05:08 +00:00
|
|
|
sudo yum install ghc cabal-install pcre-devel
|
2012-04-13 11:24:25 -04:00
|
|
|
git clone git://git-annex.branchable.com/ git-annex
|
2012-04-13 11:13:58 -04:00
|
|
|
cd git-annex
|
2012-04-22 01:31:19 -04:00
|
|
|
git checkout ghc7.0
|
2012-04-13 11:13:58 -04:00
|
|
|
cabal update
|
2012-04-13 11:37:49 -04:00
|
|
|
cabal install --only-dependencies
|
2012-04-13 11:13:58 -04:00
|
|
|
cabal configure
|
|
|
|
cabal build
|
|
|
|
cabal install --bindir=$HOME/bin
|
2011-06-02 00:51:56 -04:00
|
|
|
</pre>
|
2012-04-13 11:13:58 -04:00
|
|
|
|
|
|
|
Note: You can't just use `cabal install git-annex`, because Fedora does
|
|
|
|
not yet ship ghc 7.4.
|
2012-04-13 12:22:20 -04:00
|
|
|
|