aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/easy-git.rb
blob: d905a76c22d0d7e8306c1dcbab4db83efccac147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class EasyGit < Formula
  homepage 'http://people.gnome.org/~newren/eg/'
  url 'http://people.gnome.org/~newren/eg/download/1.7.3/eg', :using => :ssl3
  sha1 'd17165c20ea1b3887f1f81ec6d1217727b817409'

  def install
    bin.install "eg"
  end

  test do
    system "#{bin}/eg", "help"
  end
end