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