class Gd < Formula desc "Graphics library to dynamically manipulate images" homepage "https://libgd.github.io/" revision 1 stable do url "https://github.com/libgd/libgd/releases/download/gd-2.2.4/libgd-2.2.4.tar.xz" sha256 "137f13a7eb93ce72e32ccd7cebdab6874f8cf7ddf31d3a455a68e016ecd9e4e6" patch do url "https://github.com/libgd/libgd/commit/381e89de16125bb0e86ffc144d6fe3e9cfdd898f.patch?full_index=1" sha256 "93bcd92e7d18ef1f4cf4466482f41de8f0c65a7644c10bb88d10d59de96a13f1" end end bottle do cellar :any sha256 "23a18720365fd4c7aaa4d8097f339ef4177a5d708990db6711f72661d04035c9" => :sierra sha256 "f466f3c052633de8e1a649345890e3da2579791a8876e8ddc81e582654319e92" => :el_capitan sha256 "b1db65caa81c5bfdcf16b63b44dcbccbad82a7007111479a5a94a2bbc497a2d1" => :yosemite end head do url "https://github.com/libgd/libgd.git" depends_on "autoconf" => :build depends_on "automake" => :build depends_on "libtool" => :build end depends_on "fontconfig" => :recommended depends_on "freetype" => :recommended depends_on "jpeg" => :recommended depends_on "libpng" => :recommended depends_on "libtiff" => :recommended depends_on "webp" => :recommended def install args = %W[ --disable-dependency-tracking --prefix=#{prefix} --without-x --without-xpm ] 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? "webp" args << "--with-webp=#{Formula["webp"].opt_prefix}" else args << "--without-webp" 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