diff options
| -rw-r--r-- | Library/Formula/geogit.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/Library/Formula/geogit.rb b/Library/Formula/geogit.rb new file mode 100644 index 000000000..c3bdf1363 --- /dev/null +++ b/Library/Formula/geogit.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Geogit < Formula +  homepage 'http://www.geogit.org' +  url 'http://downloads.sourceforge.net/project/geogit/geogit-0.2.0/geogit-cli-app-0.2.0.zip' +  sha1 'd57e4a67a644c15f5415c5c73259a9efb5a0595a' + +  def install +    bin.install "bin/geogit" +    bin.install "bin/geogit-console" +    prefix.install "repo" +  end +end | 
