From 58a439467ff0c346f76fa9c4c7f6a301938c357c Mon Sep 17 00:00:00 2001
From: Vicent Marti <tanoku@gmail.com>
Date: Tue, 30 Nov 2010 21:28:16 +0200
Subject: [PATCH] Update README.md

Clone URL was wrong; installation instructions were outdated.

Signed-off-by: Vicent Marti <tanoku@gmail.com>
---
 README.md | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 594e437..543b89f 100644
--- a/README.md
+++ b/README.md
@@ -6,12 +6,10 @@ pygit2 is a set of Python 2.6+ bindings to the libgit2 linkable C Git library.
 INSTALLING AND RUNNING
 ========================
 
-First you need to install libgit2:
+First you need to install the latest version of libgit2. 
+You can find platform-specific instructions to build the library in the libgit2 website:
 
-    $ git clone git://github.com/libgit2/libgit2.git
-    $ cd libgit2
-    $ make
-    $ make install
+	http://libgit2.github.com
 
 Next, make sure you have the required library dependencies for pygit2: OpenSSL and ZLib.
 For instance, in Debian-based systems run:
@@ -22,7 +20,7 @@ Also, make sure you have Python 2.6+ installed together with the Python developm
 
 When those are installed, you can install pygit2:
 
-    $ git clone git@github.com:libgit2/pygit2.git
+    $ git clone git://github.com/libgit2/pygit2.git 
     $ cd pygit2
     $ python setup.py install
     $ python setup.py test