blob: 0f108d9749658cdd2a43a99eb9c958d24f428cb5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | 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
 |