blob: 1942c362aef014a7772f2f3855edf20f0bfb5ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Geogit < Formula
homepage 'http://www.geogit.org'
url 'http://downloads.sourceforge.net/project/geogit/geogit-0.6.0/geogit-cli-app-0.6.0.zip'
sha1 'c75683a38fdff63be6d3e843b94e92df72e0d740'
def install
bin.install "bin/geogit", "bin/geogit-console"
prefix.install "repo"
end
end
|