4dcee445c0
Closes Homebrew/homebrew#38249. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
16 lines
321 B
Ruby
16 lines
321 B
Ruby
require 'formula'
|
|
|
|
class EasyGit < Formula
|
|
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
|