diff options
| author | Jaime Marquínez Ferrándiz | 2013-07-14 14:44:04 +0200 |
|---|---|---|
| committer | Jack Nagel | 2013-07-14 11:30:43 -0500 |
| commit | d508b6e0eaec5c29f2d0576a20a232500eae75e5 (patch) | |
| tree | 9a41ab3b9d87fb458ed23e951fa1d1d685ca5f67 /Library | |
| parent | d83116007c090c768be0dfe04e6569f8252d4a84 (diff) | |
| download | homebrew-d508b6e0eaec5c29f2d0576a20a232500eae75e5.tar.bz2 | |
unar 1.7
Added test
Closes #21209.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/unar.rb | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Library/Formula/unar.rb b/Library/Formula/unar.rb index e59b0e416..2aa7d542a 100644 --- a/Library/Formula/unar.rb +++ b/Library/Formula/unar.rb @@ -2,9 +2,9 @@ require 'formula' class Unar < Formula homepage 'http://unarchiver.c3.cx/commandline' - url 'http://theunarchiver.googlecode.com/files/unar1.6_src.zip' - version '1.6' - sha1 '1cee2ea4bd89feff4f84754858b21f3757404d7c' + url 'http://theunarchiver.googlecode.com/files/unar1.7_src.zip' + version '1.7' + sha1 'e34760d3806fbf3f1358485ccadf51bd5c7f81be' head 'https://code.google.com/p/theunarchiver/' , :using => :hg @@ -30,4 +30,9 @@ class Unar < Formula bash_completion.install "unar.bash_completion", "lsar.bash_completion" end end + + def test + system bin/'unar', '--version' + system bin/'lsar', '--version' + end end |
