diff options
| author | Marcos D. Sánchez | 2013-10-30 12:15:49 -0300 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-31 23:03:24 -0700 |
| commit | 15128a488c6c745f7ed1363fc52667e0511bbdd2 (patch) | |
| tree | b1392b765df0fc93dea8709b596dd20765ff4f0b /Library/Formula | |
| parent | 31389eeee4bfc7b1e5056d2b9875aba93010ce3c (diff) | |
| download | homebrew-15128a488c6c745f7ed1363fc52667e0511bbdd2.tar.bz2 | |
shunit2 2.1.6
Closes #23786.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/shunit2.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/shunit2.rb b/Library/Formula/shunit2.rb new file mode 100644 index 000000000..8b773cb83 --- /dev/null +++ b/Library/Formula/shunit2.rb @@ -0,0 +1,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 |
