homebrew-core/Formula/unrar.rb
Steffen Matthischke 3bd43b62c1 unrar 5.1.5
Closes Homebrew/homebrew#29034.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-05-07 10:28:16 -05:00

26 lines
735 B
Ruby

require 'formula'
class Unrar < Formula
homepage 'http://www.rarlab.com'
url 'http://www.rarlab.com/rar/unrarsrc-5.1.5.tar.gz'
sha1 'a25fd20ad18afc053d100eecf8a56aa7490cfdca'
def install
system "make"
bin.install 'unrar'
end
test do
contentpath = "directory/file.txt"
rarpath = testpath/"archive.rar"
data = 'UmFyIRoHAM+QcwAADQAAAAAAAACaCHQggDIACQAAAAkAAAADtPej1LZwZE' +
'QUMBIApIEAAGRpcmVjdG9yeVxmaWxlLnR4dEhvbWVicmV3CsQ9ewBABwA='
rarpath.write data.unpack('m')
assert_equal contentpath, `#{bin}/unrar lb #{rarpath}`.strip
assert_equal 0, $?.exitstatus
system "#{bin}/unrar", "x", rarpath, testpath
assert_equal "Homebrew\n", (testpath/contentpath).read
end
end