73 lines
2.6 KiB
Ruby
73 lines
2.6 KiB
Ruby
class Mandoc < Formula
|
|
desc "The mandoc UNIX manpage compiler toolset"
|
|
homepage "https://mandoc.bsd.lv/"
|
|
url "https://mandoc.bsd.lv/snapshots/mandoc-1.14.4.tar.gz"
|
|
sha256 "24eb72103768987dcc63b53d27fdc085796330782f44b3b40c4660b1e1ee9b9c"
|
|
head "anoncvs@mandoc.bsd.lv:/cvs", :using => :cvs
|
|
|
|
bottle do
|
|
sha256 "07c72a5db5a90a5938cc9b414c029039ff4c324fcf92ba0810c6620dc4ff74e1" => :mojave
|
|
sha256 "70cd5bfb631edc249861ee1fcda31e8a33735cb78ce7e715d5ec9a855d421ac3" => :high_sierra
|
|
sha256 "3542d7c75f848bc0f8eadbdf35290a72a9b1d44d53fe9abaeafdb11575ad7b15" => :sierra
|
|
end
|
|
|
|
def install
|
|
localconfig = [
|
|
|
|
# Sane prefixes.
|
|
"PREFIX=#{prefix}",
|
|
"INCLUDEDIR=#{include}",
|
|
"LIBDIR=#{lib}",
|
|
"MANDIR=#{man}",
|
|
"WWWPREFIX=#{prefix}/var/www",
|
|
"EXAMPLEDIR=#{share}/examples",
|
|
|
|
# Executable names, where utilities would be replaced/duplicated.
|
|
# The mandoc versions of the utilities are definitely *not* ready
|
|
# for prime-time on Darwin, though some changes in HEAD are promising.
|
|
# The "bsd" prefix (like bsdtar, bsdmake) is more informative than "m".
|
|
"BINM_MAN=bsdman",
|
|
"BINM_APROPOS=bsdapropos",
|
|
"BINM_WHATIS=bsdwhatis",
|
|
"BINM_MAKEWHATIS=bsdmakewhatis", # default is "makewhatis".
|
|
|
|
# These are names for *section 7* pages only. Several other pages are
|
|
# prefixed "mandoc_", similar to the "groff_" pages.
|
|
"MANM_MAN=man",
|
|
"MANM_MDOC=mdoc",
|
|
"MANM_ROFF=mandoc_roff", # This is the only one that conflicts (groff).
|
|
"MANM_EQN=eqn",
|
|
"MANM_TBL=tbl",
|
|
|
|
"OSNAME='Mac OS X #{MacOS.version}'", # Bottom corner signature line.
|
|
|
|
# Not quite sure what to do here. The default ("/usr/share", etc.) needs
|
|
# sudoer privileges, or will error. So just brew's manpages for now?
|
|
"MANPATH_DEFAULT=#{HOMEBREW_PREFIX}/share/man",
|
|
|
|
"HAVE_MANPATH=0", # Our `manpath` is a symlink to system `man`.
|
|
"STATIC=", # No static linking on Darwin.
|
|
|
|
"HOMEBREWDIR=#{HOMEBREW_CELLAR}", # ? See configure.local.example, NEWS.
|
|
"BUILD_CGI=1",
|
|
]
|
|
|
|
File.rename("cgi.h.example", "cgi.h") # For man.cgi
|
|
|
|
(buildpath/"configure.local").write localconfig.join("\n")
|
|
system "./configure"
|
|
|
|
# I've tried twice to send a bug report on this to tech@mdocml.bsd.lv.
|
|
# In theory, it should show up with:
|
|
# search.gmane.org/?query=jobserver&group=gmane.comp.tools.mdocml.devel
|
|
ENV.deparallelize do
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/mandoc", "-Thtml",
|
|
"-Ostyle=#{share}/examples/example.style.css", "#{man1}/mandoc.1"
|
|
end
|
|
end
|