homebrew-core/Formula/shunit2.rb
Marcos D. Sánchez 58313a5284 shunit2 2.1.6
Closes Homebrew/homebrew#23786.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-10-31 23:03:24 -07:00

15 lines
304 B
Ruby

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