homebrew-core/Formula/pdflib-lite.rb

33 lines
1.2 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class PdflibLite < Formula
homepage 'http://www.pdflib.com/download/free-software/pdflib-lite/'
2012-06-12 03:54:32 +00:00
url 'http://www.pdflib.com/binaries/PDFlib/705/PDFlib-Lite-7.0.5p3.tar.gz'
version '7.0.5p3'
sha1 '42e0605ae21f4b6d25fa2d20e78fed6df36fbaa9'
2011-03-21 21:24:22 +00:00
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.undent
pdflib-lite is not open source software; usage restrictions apply!
Be sure to understand and obey the license terms, which can be found at:
http://www.pdflib.com/download/free-software/pdflib-lite-7/pdflib-lite-licensing/
EOS
end
end