blob: 8b773cb83e853a891abfce0a915cb17079b5d994 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | require 'formula'
class Shunit2 < Formula
  homepage 'https://code.google.com/p/shunit2/'
  url 'https://shunit2.googlecode.com/files/shunit2-2.1.6.tgz'
  sha1 '9cd0e1834b221c378c2f8a6f0baf10410e53680f'
  def install
    bin.install 'src/shunit2'
  end
  test do
    system "#{bin}/shunit2"
  end
end
 |