blob: ae2e29357404518be2bfc1e31169d5a4100da439 (
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.8.0/geogit-cli-app-0.8.0.zip'
sha1 '343df635d61a26f6ff5603cdb1b51d2b062806ff'
def install
bin.install "bin/geogit", "bin/geogit-console"
prefix.install "repo"
end
end
|