class PdflibLite < Formula desc "Subset of the functionality of PDFlib 7" homepage "https://www.pdflib.com/download/free-software/pdflib-lite-7/" url "https://dl.bintray.com/homebrew/mirror/pdflib-lite--7.0.5p3.tar.xz" mirror "https://fossies.org/linux/misc/old/PDFlib-Lite-7.0.5p3.tar.gz" mirror "https://www.pdflib.com/binaries/PDFlib/705/PDFlib-Lite-7.0.5p3.tar.gz" version "7.0.5p3" sha256 "e5fb30678165d28b2bf066f78d5f5787e73a2a28d4902b63e3e07ce1678616c9" bottle do cellar :any rebuild 2 sha256 "200edc8d498349fcebe26df1d692c4c8b7599055b6efadead3199356e9b750b8" => :catalina sha256 "67334e52d81135fa1c1fbc5ff4065b745087d2072955b052aac6fad79520f663" => :mojave sha256 "7a3783e63304556c7c93604449ac09718cca6ea4e2244ff5819edb2a5d99f8f7" => :high_sierra sha256 "466701d2cac2d101b470fbdb122ba3a8f4f9169fe6a28fc8846859d8f7cfafc8" => :sierra sha256 "c05f42bfb25d1fa204440a1d421af10f9bf853e94dd17c7325e0382d7683d589" => :el_capitan sha256 "e2e8891b33b4f3f2bab8f809e19d9df0450c1e872d39e6d5090094630210ee45" => :yosemite sha256 "d4506f8523153b8e452c17f2897d10ce526476ed8e27c913a9325aac2f2b4f0f" => :mavericks end def install # Without the following substitution, pdflib-lite runs into weird # build errors due to bad interactions with the TIFF headers. # This workaround comes from the MacPorts.org portfile for pdflib. ENV["CPPFLAGS"] = "-isystem#{prefix}" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--without-java", "--without-perl", "--without-py", "--without-tcl", "--without-ruby" system "make" system "make", "install" end def caveats; <<~EOS pdflib-lite is not open source software; usage restrictions apply! Be sure to understand and obey the license terms, which can be found at: https://www.pdflib.com/download/free-software/pdflib-lite-7/pdflib-lite-licensing/ EOS end end