51 lines
2.2 KiB
Ruby
51 lines
2.2 KiB
Ruby
class Zlib < Formula
|
|
desc "General-purpose lossless data-compression library"
|
|
homepage "https://zlib.net/"
|
|
url "https://zlib.net/zlib-1.2.11.tar.gz"
|
|
mirror "https://downloads.sourceforge.net/project/libpng/zlib/1.2.11/zlib-1.2.11.tar.gz"
|
|
sha256 "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1"
|
|
license "Zlib"
|
|
head "https://github.com/madler/zlib.git", branch: "develop"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/href=.*?zlib[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_big_sur: "b480ed6baf10880f61b5a3097fb0921d44466857e1dde53a09e2ae4e378b1a8c"
|
|
sha256 cellar: :any, big_sur: "b95aa332dfc7c6dfb5e86fd30068f78e2cf87ee0232e5bef0adddae8215f543d"
|
|
sha256 cellar: :any, catalina: "8ec66cf6faa310712767efc3022fdd16568a79234439f64bf579acb628f893bc"
|
|
sha256 cellar: :any, mojave: "245a43a59c57f83848e7382974bb80a46eac1d53bcaefb1bdebd1f85107d4169"
|
|
sha256 cellar: :any, high_sierra: "30548658b43cf66979f2756680fbb32d3c19c967e478ceea22d07f536b22bbce"
|
|
sha256 cellar: :any, sierra: "f822b4dbab4a15b889316b89248c7b4d15d6af9dc460bf209b9425b0accb7fa3"
|
|
sha256 cellar: :any, el_capitan: "3f912f6f1ce6c586128ebde29756c883b89409e652ca7aa9a29a773c2d4d0915"
|
|
sha256 cellar: :any, yosemite: "5b969eb38b90a3e31869586df9d62e59d359212b16c6a270aee690dd67caa491"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "db54bf590275839d3f4cdf31d9527aa3a4c19a8984b5605cedc3f7c22a65eea4"
|
|
end
|
|
|
|
keg_only :provided_by_macos
|
|
|
|
# https://zlib.net/zlib_how.html
|
|
resource "test_artifact" do
|
|
url "https://zlib.net/zpipe.c"
|
|
version "20051211"
|
|
sha256 "68140a82582ede938159630bca0fb13a93b4bf1cb2e85b08943c26242cf8f3a6"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
testpath.install resource("test_artifact")
|
|
system ENV.cc, "zpipe.c", "-I#{include}", "-L#{lib}", "-lz", "-o", "zpipe"
|
|
|
|
touch "foo.txt"
|
|
output = "./zpipe < foo.txt > foo.txt.z"
|
|
system output
|
|
assert_predicate testpath/"foo.txt.z", :exist?
|
|
end
|
|
end
|