homebrew-core/Formula/unarj.rb
Viktor Szakáts 97497ca90c unarj: https resource and sha256
Closes Homebrew/homebrew#37474.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-03-07 15:44:13 +00:00

31 lines
985 B
Ruby

class Unarj < Formula
homepage "http://www.arjsoftware.com/files.htm"
url "http://pkgs.fedoraproject.org/repo/pkgs/unarj/unarj-2.65.tar.gz/c6fe45db1741f97155c7def322aa74aa/unarj-2.65.tar.gz"
sha256 "d7dcc325160af6eb2956f5cb53a002edb2d833e4bb17846669f92ba0ce3f0264"
bottle do
cellar :any
sha1 "4cbe4d541f6261ea2da9c7551b9596375a42ff24" => :yosemite
sha1 "4ff0b52967309059305f41c49ca9028469d46cce" => :mavericks
sha1 "e3fb406acd8fc83d2fa890e82126cf74c225da80" => :mountain_lion
end
resource "testfile" do
url "https://s3.amazonaws.com/ARJ/ARJ286.EXE"
sha256 "e7823fe46fd971fe57e34eef3105fa365ded1cc4cc8295ca3240500f95841c1f"
end
def install
system "make"
bin.mkdir
system "make", "install", "INSTALLDIR=#{bin}"
end
test do
# Ensure that you can extract ARJ.EXE from a sample self-extracting file
resource("testfile").stage do
system "unarj", "e", "ARJ286.EXE"
assert File.exist? "ARJ.EXE"
end
end
end