homebrew-core/Formula/gzrt.rb

29 lines
1.4 KiB
Ruby

class Gzrt < Formula
desc "Gzip recovery toolkit"
homepage "https://www.urbanophile.com/arenn/coding/gzrt/gzrt.html"
url "https://www.urbanophile.com/arenn/coding/gzrt/gzrt-0.8.tar.gz"
sha256 "b0b7dc53dadd8309ad9f43d6d6be7ac502c68ef854f1f9a15bd7f543e4571fee"
livecheck do
url :homepage
regex(/href=.*?gzrt[._-]v?(\d+(?:\.\d+)+)\.t/i)
end
bottle do
sha256 cellar: :any_skip_relocation, arm64_big_sur: "b1bc6db3fef40f0c48ceac080ee84108364cf4ff1d94bb1423c1be5b2f14bc96"
sha256 cellar: :any_skip_relocation, big_sur: "6f9f146178364bb1306a145076a4c79f01f1ba08726b2e90a022597fe34b63f9"
sha256 cellar: :any_skip_relocation, catalina: "d1d5378de11679a973ce6a5893984b0431f7ad62f369215814927cdb5fbf6678"
sha256 cellar: :any_skip_relocation, mojave: "4d2f5fca0f32dd8a88d7aba3d8e6f926d89f74fa1748b9e7f618bdc76e3500fe"
sha256 cellar: :any_skip_relocation, high_sierra: "2e7f8e8743943f1e83c4b1ed6372fa3c4cab00f7a090dbb4f967b7fade1e5e20"
sha256 cellar: :any_skip_relocation, sierra: "da5c89596737f514900f32986dd9eb32f010c6c1b9f1643dd03a07eae7e383a7"
sha256 cellar: :any_skip_relocation, el_capitan: "01df00fd35c6eaee9d32da4644d694ce33deda79a9c3da0284b52694f94a9515"
sha256 cellar: :any_skip_relocation, yosemite: "af8ffc53bcf606b0634537adfeb67733c27ec079fa0347de41c668dbb5cce037"
end
def install
system "make"
bin.install "gzrecover"
man1.install "gzrecover.1"
end
end