class Pixman < Formula desc "Low-level library for pixel manipulation" homepage "http://cairographics.org/" url "http://cairographics.org/releases/pixman-0.32.6.tar.gz" sha256 "3dfed13b8060eadabf0a4945c7045b7793cc7e3e910e748a8bb0f0dc3e794904" bottle do cellar :any revision 3 sha256 "524fdd4815e099818205d1db925e0e648a489fca91f9f5cc727c825ac62451b8" => :el_capitan sha256 "07e3ec0198efc4799e7841dbb64f2faeadcf846707f6f8eabe2d2dc037b2ee97" => :yosemite sha256 "28508d2b6737c68a50020b9b4659ad2575437d032d13c496e57dbac9aee18cbb" => :mavericks end option :universal depends_on "pkg-config" => :build keg_only :provided_pre_mountain_lion fails_with :llvm do build 2336 cause <<-EOS.undent Building with llvm-gcc causes PDF rendering issues in Cairo. https://trac.macports.org/ticket/30370 See Homebrew issues #6631, #7140, #7463, #7523. EOS end def install ENV.universal_binary if build.universal? system "./configure", "--disable-dependency-tracking", "--disable-gtk", "--disable-mmx", # MMX assembler fails with Xcode 7 "--disable-silent-rules", "--prefix=#{prefix}" system "make", "install" end test do (testpath/"test.c").write <<-EOS.undent #include int main(int argc, char *argv[]) { pixman_color_t white = { 0xffff, 0xffff, 0xffff, 0xffff }; pixman_image_t *image = pixman_image_create_solid_fill(&white); pixman_image_unref(image); } EOS flags = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split flags += %W[ -I#{include}/pixman-1 -L#{lib} -lpixman-1 ] system ENV.cc, "test.c", "-o", "test", *flags system "./test" end end