summaryrefslogtreecommitdiff
path: root/doc/install/OSX/Homebrew.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-08-15 15:11:45 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-08-15 15:11:45 -0400
commit0832346dc9113a713bbbcb6d1dadeb81f0b5409e (patch)
tree7ce1c9487901630959e31a01f23dd7f1ed82c174 /doc/install/OSX/Homebrew.mdwn
parentcf2b59d496e9da8e8ae6215676a454d2e04a97e6 (diff)
reorg, moving MacPorts to a separate page
Diffstat (limited to 'doc/install/OSX/Homebrew.mdwn')
-rw-r--r--doc/install/OSX/Homebrew.mdwn21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/install/OSX/Homebrew.mdwn b/doc/install/OSX/Homebrew.mdwn
new file mode 100644
index 000000000..bd9a840b0
--- /dev/null
+++ b/doc/install/OSX/Homebrew.mdwn
@@ -0,0 +1,21 @@
+[Homebrew](http://brew.sh/) has [a formula](https://github.com/Homebrew/homebrew/commits/master/Library/Formula/git-annex.rb) for git-annex.
+
+Homebrew users can simply run `brew install git-annex` to install git-annex.
+
+## buiding git-annex from sources
+
+This is the old recipe for building git-annex from source, using
+packages from homebrew. Useful if you want a newer version than the version
+in homebrew.
+
+<pre>
+brew install haskell-platform git ossp-uuid md5sha1sum coreutils gnutls libidn gsasl pkg-config libxml2
+brew link libxml2 --force
+cabal update
+mkdir $HOME/bin
+PATH=$HOME/bin:$PATH
+PATH=$HOME/.cabal/bin:$PATH
+cabal install c2hs --bindir=$HOME/bin
+cabal install gnuidn
+cabal install git-annex --bindir=$HOME/bin
+</pre>