22 lines
717 B
Ruby
22 lines
717 B
Ruby
class Htmldoc < Formula
|
|
desc "Convert HTML to PDF or PostScript"
|
|
homepage "https://www.msweet.org/projects.php?Z1"
|
|
url "https://www.msweet.org/files/project1/htmldoc-1.8.28-source.tar.bz2"
|
|
sha256 "2a688bd820ad6f7bdebb274716102dafbf4d5fcfa20a5b8d87a56b030d184732"
|
|
revision 1
|
|
|
|
depends_on "libpng"
|
|
depends_on "jpeg"
|
|
|
|
# El Cap Security Framework changes silently break the `htmldoc` compile.
|
|
# https://github.com/Homebrew/homebrew/issues/45334
|
|
depends_on MaximumMacOSRequirement => :yosemite
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|