homebrew-core/Formula/gd.rb

88 lines
2.3 KiB
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Gd < Formula
desc "Graphics library to dynamically manipulate images"
2015-11-07 18:36:30 +00:00
homepage "https://libgd.github.io/"
url "https://bitbucket.org/libgd/gd-libgd/downloads/libgd-2.1.1.tar.xz"
sha256 "9ada1ed45594abc998ebc942cef12b032fbad672e73efc22bc9ff54f5df2b285"
revision 2
head do
url "https://bitbucket.org/libgd/gd-libgd.git"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
2011-04-04 20:33:56 +00:00
2014-02-22 19:15:44 +00:00
bottle do
cellar :any
2016-02-10 15:50:14 +00:00
sha256 "07dcaf06b6f4b55fa209f1ad8a03ef549abfc789b820c7fc77762037337557df" => :el_capitan
sha256 "acb0d79ec9ae9cbe1c114d0a772821036926dc8b2d5d09a9945037a49db21719" => :yosemite
sha256 "7f96680ac98c529395492865f7a7ffe056e130a99c1006978682620dfa0da365" => :mavericks
2014-02-22 19:15:44 +00:00
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
2011-03-21 21:24:22 +00:00
def install
ENV.universal_binary if build.universal?
args = %W[--disable-dependency-tracking --prefix=#{prefix}]
2013-08-05 16:34:17 +00:00
if build.with? "libpng"
2014-03-06 02:12:51 +00:00
args << "--with-png=#{Formula["libpng"].opt_prefix}"
2013-08-05 16:34:17 +00:00
else
args << "--without-png"
end
if build.with? "fontconfig"
2014-03-06 02:12:51 +00:00
args << "--with-fontconfig=#{Formula["fontconfig"].opt_prefix}"
else
args << "--without-fontconfig"
end
2013-08-05 16:34:17 +00:00
if build.with? "freetype"
2014-03-06 02:12:51 +00:00
args << "--with-freetype=#{Formula["freetype"].opt_prefix}"
2013-08-05 16:34:17 +00:00
else
args << "--without-freetype"
end
if build.with? "jpeg"
2014-02-25 05:51:06 +00:00
args << "--with-jpeg=#{Formula["jpeg"].opt_prefix}"
2013-08-05 16:34:17 +00:00
else
args << "--without-jpeg"
end
if build.with? "libtiff"
2014-02-25 05:51:06 +00:00
args << "--with-tiff=#{Formula["libtiff"].opt_prefix}"
else
args << "--without-tiff"
end
if build.with? "libvpx"
2014-02-25 05:51:06 +00:00
args << "--with-vpx=#{Formula["libvpx"].opt_prefix}"
else
args << "--without-vpx"
end
system "./bootstrap.sh" if build.head?
2012-09-02 07:58:21 +00:00
system "./configure", *args
system "make", "install"
2010-09-30 19:01:01 +00:00
end
2012-09-02 07:58:21 +00:00
2013-01-07 03:22:57 +00:00
test do
system "#{bin}/pngtogd", test_fixtures("test.png"), "gd_test.gd"
2013-01-07 03:22:57 +00:00
system "#{bin}/gdtopng", "gd_test.gd", "gd_test.png"
2012-09-02 07:58:21 +00:00
end
2010-09-30 19:01:01 +00:00
end