class Libharu < Formula desc "Library for generating PDF files" homepage "http://www.libharu.org/" url "https://github.com/libharu/libharu/archive/RELEASE_2_3_0.tar.gz" sha256 "8f9e68cc5d5f7d53d1bc61a1ed876add1faf4f91070dbc360d8b259f46d9a4d2" head "https://github.com/libharu/libharu.git" bottle do cellar :any sha256 "860cda2675feea36f82f4b8108927c6a0b1cabca5429c119f63557da11394f74" => :sierra sha256 "68003e06f893b8df9d412960a06c69f6b45cb4ab5abd96e9f10c5936ab8724ac" => :el_capitan sha256 "fd4201d2cf6e068aed5e946b09ae1b22a390ca4ed968084bfed18ed705047987" => :yosemite sha256 "74e714dd0419580bbde47d9458abd95efd4ea316ec0a28e4c665bbeb89401329" => :mavericks sha256 "76798fc963932099d6760d1fcb46cf3b1d829f97cc00ac36b55a5a5aadf4bc3e" => :mountain_lion end depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build depends_on "libpng" def install system "./buildconf.sh", "--force" args = %W[ --disable-debug --disable-dependency-tracking --prefix=#{prefix} --with-png=#{Formula["libpng"].opt_prefix} ] args << "--with-zlib=#{MacOS.sdk_path}/usr" unless MacOS::CLT.installed? system "./configure", *args system "make", "install" end test do (testpath/"test.c").write <<-EOS.undent #include "hpdf.h" int main(void) { int result = 1; HPDF_Doc pdf = HPDF_New(NULL, NULL); if (pdf) { HPDF_AddPage(pdf); if (HPDF_SaveToFile(pdf, "test.pdf") == HPDF_OK) result = 0; HPDF_Free(pdf); } return result; } EOS system ENV.cc, "test.c", "-lhpdf", "-lz", "-o", "test" system "./test" end end