homebrew-core/Formula/wandio.rb

35 lines
1.4 KiB
Ruby

class Wandio < Formula
desc "Transparently read from and write to zip, bzip2, lzma or zstd archives"
homepage "https://research.wand.net.nz/software/libwandio.php"
url "https://research.wand.net.nz/software/wandio/wandio-4.2.3.tar.gz"
sha256 "78c781ce2c3783b85d894e29005b7e98fc246b33f94616047de3bb4d11d4d823"
license "GPL-3.0"
livecheck do
url :homepage
regex(/href=.*?wandio[._-]v?(\d+(?:\.\d+)+)\.t/i)
end
bottle do
sha256 cellar: :any, arm64_big_sur: "e527effe76092d1b65733c73d6da6c46b01c1485b8e3c5ef83488f1167c44fcf"
sha256 cellar: :any, big_sur: "d22ac83e77d52b6ea039e2fe4a8b888a17fb9ee91a933d0149fac081ae0b783c"
sha256 cellar: :any, catalina: "028d07a97370b37fc28a2f2045bf3e4a9241d9c49f5eea2e635960ced7b6453c"
sha256 cellar: :any, mojave: "a16a370f4bd6d2acd415f305fb99b2bfba1b86f666c68877d01bd90ddcb7522b"
sha256 cellar: :any, high_sierra: "29602aec2851811108e97397e6310f091f5e5fe0844f9cfcd6657193d9c53ff4"
end
def install
system "./configure", "--with-http",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/wandiocat", "-z", "9", "-Z", "gzip", "-o", "test.gz",
test_fixtures("test.png"), test_fixtures("test.pdf")
assert_predicate testpath/"test.gz", :exist?
end
end