class Gd < Formula desc "Graphics library to dynamically manipulate images" homepage "https://libgd.github.io/" url "https://bitbucket.org/libgd/gd-libgd/downloads/libgd-2.1.1.tar.xz" sha256 "9ada1ed45594abc998ebc942cef12b032fbad672e73efc22bc9ff54f5df2b285" revision 1 head do url "https://bitbucket.org/libgd/gd-libgd.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end bottle do cellar :any sha256 "35f8af66d1a1bae0fad9abc277de017866237ce250ac6cf6063bb3d3de50e77f" => :el_capitan sha256 "d4117b64989cf466e1fd6d0bca2cec74fc538d800346b4ba93fc64183416a2fb" => :yosemite sha256 "63e708a164a8230f5a1656521bf28c6f7b8706a4bf967a54427517a4da9f8b1c" => :mavericks end option :universal depends_on "fontconfig" => :recommended depends_on "freetype" => :recommended depends_on "jpeg" => :recommended depends_on "libpng" => :recommended depends_on "libtiff" => :recommended depends_on "libvpx" => :optional fails_with :llvm do build 2326 cause "Undefined symbols when linking" end def install ENV.universal_binary if build.universal? args = %W[--disable-dependency-tracking --prefix=#{prefix}] if build.with? "libpng" args << "--with-png=#{Formula["libpng"].opt_prefix}" else args << "--without-png" end if build.with? "fontconfig" args << "--with-fontconfig=#{Formula["fontconfig"].opt_prefix}" else args << "--without-fontconfig" end if build.with? "freetype" args << "--with-freetype=#{Formula["freetype"].opt_prefix}" else args << "--without-freetype" end if build.with? "jpeg" args << "--with-jpeg=#{Formula["jpeg"].opt_prefix}" else args << "--without-jpeg" end if build.with? "libtiff" args << "--with-tiff=#{Formula["libtiff"].opt_prefix}" else args << "--without-tiff" end if build.with? "libvpx" args << "--with-vpx=#{Formula["libvpx"].opt_prefix}" else args << "--without-vpx" end system "./bootstrap.sh" if build.head? system "./configure", *args system "make", "install" end test do system "#{bin}/pngtogd", test_fixtures("test.png"), "gd_test.gd" system "#{bin}/gdtopng", "gd_test.gd", "gd_test.png" end end