diff options
| author | Matthew Vincent | 2013-05-22 20:38:53 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-07-30 10:26:51 -0700 |
| commit | 2060187d9f4cb7b10dd6b342cb12def4305401df (patch) | |
| tree | 576aac6e04798efc2af964a12550cabda47f13b2 | |
| parent | b29fd77291a55dcd0e8a4156771efff7859324f2 (diff) | |
| download | homebrew-2060187d9f4cb7b10dd6b342cb12def4305401df.tar.bz2 | |
geogit 0.2.0
Closes #19763.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -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 |
