34 lines
1.3 KiB
Ruby
34 lines
1.3 KiB
Ruby
class Scdoc < Formula
|
|
desc "Small man page generator"
|
|
homepage "https://sr.ht/~sircmpwn/scdoc/"
|
|
url "https://git.sr.ht/~sircmpwn/scdoc/archive/1.11.1.tar.gz"
|
|
sha256 "1098a1ed2e087596fc0b3f657c1c8a5e00412267aa4baf3619e36824306645b1"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "2aac49cd42efd595338cb631a42ffa7f418c46a144eb15398d60c38bee6644df"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "81dd4cefe0f4df18d14726d318b5dbcf8b42085041834e5da8852f6ec02e8b73"
|
|
sha256 cellar: :any_skip_relocation, catalina: "ea37af44324b83e8368af5965ef5cb198ef1a4b4dbabcd81e0da9297366a245b"
|
|
sha256 cellar: :any_skip_relocation, mojave: "9ad77b02592b8be119ceafd2286a24c383a537a3b1e169b91aba049e82d41dee"
|
|
end
|
|
|
|
def install
|
|
# scdoc sets by default LDFLAGS=-static which doesn't work on macos(x)
|
|
system "make", "LDFLAGS=", "PREFIX=#{prefix}"
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
preamble = <<~EOF
|
|
.\\" Generated by scdoc #{version}
|
|
.\\" Complete documentation for this program is not available as a GNU info page
|
|
.ie \\n(.g .ds Aq \\(aq
|
|
.el .ds Aq '
|
|
.nh
|
|
.ad l
|
|
.\\" Begin generated content:
|
|
EOF
|
|
assert_equal preamble, shell_output("#{bin}/scdoc </dev/null")
|
|
end
|
|
end
|