325fb09e6e
lhasa: * `depends_on` (line 18) should be put before `conflicts_with` (line 16)
39 lines
1.3 KiB
Ruby
39 lines
1.3 KiB
Ruby
class Lhasa < Formula
|
|
desc "LHA implementation to decompress .lzh and .lzs archives"
|
|
homepage "https://fragglet.github.io/lhasa/"
|
|
url "https://github.com/fragglet/lhasa/archive/v0.3.1.tar.gz"
|
|
sha256 "ad76d763c7e91f47fde455a1baef4bfb0d1debba424039eabe0140fa8f115c5e"
|
|
head "https://github.com/fragglet/lhasa.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "d0abfc9315cfeff37781861e8c7ba2d3eb34003684560ee22a5dfb2acc4dfd5a" => :sierra
|
|
sha256 "0d407f1058853c656a4aef717c1e72ff57472e0622fb344a5ef57c4c9ad8c3ee" => :el_capitan
|
|
sha256 "afd0b2c24f4e4103c6ab8e918a972fda1b614890fc527bf314cc253e199013ee" => :yosemite
|
|
sha256 "eecde92149160d0ec03d5b2f88408d67a4bc03b415ed4a78ff12474f6aa965f4" => :mavericks
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
|
|
conflicts_with "lha", :because => "both install a `lha` binary"
|
|
|
|
def install
|
|
system "./autogen.sh", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
data = [
|
|
%w[
|
|
31002d6c68302d0400000004000000f59413532002836255050000865a060001666f6f0
|
|
50050a4810700511400f5010000666f6f0a00
|
|
].join,
|
|
].pack("H*")
|
|
|
|
pipe_output("#{bin}/lha x -", data)
|
|
assert_equal "foo\n", (testpath/"foo").read
|
|
end
|
|
end
|