aboutsummaryrefslogtreecommitdiff
path: root/doc/install
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-02-06 13:43:31 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-02-06 13:43:31 -0400
commit6c45f1123d0709787c7df15c46b8d97e9813eb83 (patch)
tree829a539d35b836adf969ff0ae2314b024b3c0771 /doc/install
parentc975384195467b5e5bca32d8199330e96be9feba (diff)
reord install pages; per-OS instructions
Diffstat (limited to 'doc/install')
-rw-r--r--doc/install/Debian.mdwn9
-rw-r--r--doc/install/OSX.mdwn17
-rw-r--r--doc/install/Ubuntu.mdwn5
3 files changed, 31 insertions, 0 deletions
diff --git a/doc/install/Debian.mdwn b/doc/install/Debian.mdwn
new file mode 100644
index 000000000..90c9658a9
--- /dev/null
+++ b/doc/install/Debian.mdwn
@@ -0,0 +1,9 @@
+If using Debian testing or unstable:
+
+ sudo apt-get install git-annex
+
+git-annex is not yet in a Debian stable release, but the source
+can be built from Debian stable. Just [[download]] it from git, and
+then in the `git-annex` directory, run `dpkg-checkbuilddeps` and install
+the necessary packages. You can also run `sudo debian/rules binary` to build
+a `git-annex.deb`.
diff --git a/doc/install/OSX.mdwn b/doc/install/OSX.mdwn
new file mode 100644
index 000000000..e107e48eb
--- /dev/null
+++ b/doc/install/OSX.mdwn
@@ -0,0 +1,17 @@
+<pre>
+sudo port install haskell-platform git-core ossp-uuid md5sha1sum
+sudo cabal update
+sudo cabal install missingh
+sudo cabal install utf8-string
+sudo port install pcre
+sudo cabal install pcre-light
+sudo cabal install quickcheck
+
+git clone git://git.kitenet.net/git-annex
+
+cd git-annex
+make
+sudo make install
+</pre>
+
+Originally posted by Jon at <https://gist.github.com/671785> --[[Joey]]
diff --git a/doc/install/Ubuntu.mdwn b/doc/install/Ubuntu.mdwn
new file mode 100644
index 000000000..ffc763ff3
--- /dev/null
+++ b/doc/install/Ubuntu.mdwn
@@ -0,0 +1,5 @@
+If using Ubuntu natty or newer:
+
+ sudo apt-get install git-annex
+
+Otherwise, see [[Debian]] manual installation instructions.