abc26941f8
Closes Homebrew/homebrew#32018. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
26 lines
741 B
Ruby
26 lines
741 B
Ruby
require 'formula'
|
|
|
|
class Unrar < Formula
|
|
homepage 'http://www.rarlab.com'
|
|
url 'http://www.rarlab.com/rar/unrarsrc-5.1.7.tar.gz'
|
|
sha1 'e91800e4c3dfa0745c566f0d724692731126ae88'
|
|
|
|
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').first
|
|
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
|