homebrew-core/Formula/gzip.rb

27 lines
945 B
Ruby
Raw Normal View History

2017-03-19 18:13:37 +00:00
class Gzip < Formula
desc "Popular GNU data compression program"
homepage "https://www.gnu.org/software/gzip"
2017-04-23 05:13:20 +00:00
url "https://ftp.gnu.org/gnu/gzip/gzip-1.8.tar.gz"
mirror "https://ftpmirror.gnu.org/gzip/gzip-1.8.tar.gz"
2017-03-19 18:13:37 +00:00
sha256 "1ff7aedb3d66a0d73f442f6261e4b3860df6fd6c94025c2cb31a202c9c60fe0e"
bottle do
cellar :any_skip_relocation
2017-04-03 15:36:08 +00:00
sha256 "e51384ad9df99dbda85adc5ed68523661357cb038504f27a34e1851470b5416f" => :sierra
sha256 "1fcddc90fa996157665322ea1520863e9367a97693334f4c9b60b2abcf958328" => :el_capitan
sha256 "e240320b82c71f8367a696558a4863469b52fcb0ca8245ba0f0c83483f126507" => :yosemite
2017-03-19 18:13:37 +00:00
end
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make", "install"
end
test do
(testpath/"foo").write "test"
system "#{bin}/gzip", "foo"
system "#{bin}/gzip", "-t", "foo.gz"
assert_equal "test", shell_output("#{bin}/gunzip -c foo")
end
end