diff options
| author | Geoff Nixon | 2015-02-22 01:32:53 -0800 |
|---|---|---|
| committer | Jack Nagel | 2015-02-24 00:17:02 -0500 |
| commit | f746b6c238d99eb9b4eaccb58056064c3dd9b7a6 (patch) | |
| tree | 3923c9c22d91d1edf2d7d2587d8281563caa53d0 /Library/Formula | |
| parent | 1fdb9beb4f6e759fcbb564f8ed3f024c3387fd9e (diff) | |
| download | homebrew-f746b6c238d99eb9b4eaccb58056064c3dd9b7a6.tar.bz2 | |
unittest: fix checksum
Closes #37070.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/unittest.rb | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/unittest.rb b/Library/Formula/unittest.rb index 35a89d7ea..60194b02e 100644 --- a/Library/Formula/unittest.rb +++ b/Library/Formula/unittest.rb @@ -1,9 +1,7 @@ -require 'formula' - class Unittest < Formula - homepage 'http://unittest.red-bean.com/' - url 'http://unittest.red-bean.com/tar/unittest-0.50-62.tar.gz' - sha1 '4a5a5683f26d15c46911a163411e56968c441849' + homepage "http://unittest.red-bean.com/" + url "http://unittest.red-bean.com/tar/unittest-0.50-62.tar.gz" + sha1 "c9012061963ac1330c6c6efc8cdbbb79360757fe" fails_with :llvm do build 2334 @@ -12,6 +10,6 @@ class Unittest < Formula def install system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" - system "make install" + system "make", "install" end end |
