homebrew-core/Formula/easy-git.rb
2015-06-05 14:47:57 +01:00

17 lines
373 B
Ruby

require 'formula'
class EasyGit < Formula
desc "Wrapper to simplify learning and using git"
homepage 'https://people.gnome.org/~newren/eg/'
url 'https://people.gnome.org/~newren/eg/download/1.7.5.2/eg'
version '1.7.5.2'
sha1 'c59a10affaae79bddbbe1de743d85d7771575905'
def install
bin.install "eg"
end
test do
system "#{bin}/eg", "help"
end
end