blob: d94105b79c8f810466d89295389814fa0152796b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class EasyGit < Formula
homepage 'http://people.gnome.org/~newren/eg/'
url 'http://people.gnome.org/~newren/eg/download/1.7.5.2/eg', :using => :ssl3
version '1.7.5.2'
sha1 'c59a10affaae79bddbbe1de743d85d7771575905'
def install
bin.install "eg"
end
test do
system "#{bin}/eg", "help"
end
end
|