58 lines
2.0 KiB
Ruby
58 lines
2.0 KiB
Ruby
class Help2man < Formula
|
|
desc "Automatically generate simple man pages"
|
|
homepage "https://www.gnu.org/software/help2man/"
|
|
url "https://ftp.gnu.org/gnu/help2man/help2man-1.48.1.tar.xz"
|
|
mirror "https://ftpmirror.gnu.org/help2man/help2man-1.48.1.tar.xz"
|
|
sha256 "de8a74740bd058646567b92ab4ecdeb9da9f1a07cc7c4f607a3c14dd38d10799"
|
|
license "GPL-3.0-or-later"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "fc9c571dfe3bb9a6bd50d79ac0a72eac8381646d7cabe52965a12c1b5314ee57"
|
|
sha256 cellar: :any, big_sur: "5b2c195f1db08cefabfa6a7abf2f4c023331b0fd236859994e2cffb8491dc3af"
|
|
sha256 cellar: :any, catalina: "494671eb1d653e331675a27c4bdae7def258522ade3faf17d5ebf5e8676650b6"
|
|
sha256 cellar: :any, mojave: "c970589ff2925de795ffae0f2964dde865da1e09cb32fb3ef7d0086abd57d8de"
|
|
end
|
|
|
|
depends_on "gettext" if Hardware::CPU.intel?
|
|
|
|
uses_from_macos "perl"
|
|
|
|
resource "Locale::gettext" do
|
|
url "https://cpan.metacpan.org/authors/id/P/PV/PVANDRY/gettext-1.07.tar.gz"
|
|
sha256 "909d47954697e7c04218f972915b787bd1244d75e3bd01620bc167d5bbc49c15"
|
|
end
|
|
|
|
def install
|
|
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
|
|
|
|
if Hardware::CPU.intel?
|
|
resource("Locale::gettext").stage do
|
|
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
# install is not parallel safe
|
|
# see https://github.com/Homebrew/homebrew/issues/12609
|
|
ENV.deparallelize
|
|
|
|
args = []
|
|
args << "--enable-nls" if Hardware::CPU.intel?
|
|
|
|
system "./configure", "--prefix=#{prefix}", *args
|
|
system "make", "install"
|
|
(libexec/"bin").install "#{bin}/help2man"
|
|
(bin/"help2man").write_env_script("#{libexec}/bin/help2man", PERL5LIB: ENV["PERL5LIB"])
|
|
end
|
|
|
|
test do
|
|
out = if Hardware::CPU.intel?
|
|
shell_output("#{bin}/help2man --locale=en_US.UTF-8 #{bin}/help2man")
|
|
else
|
|
shell_output("#{bin}/help2man #{bin}/help2man")
|
|
end
|
|
|
|
assert_match "help2man #{version}", out
|
|
end
|
|
end
|