homebrew-core/Formula/gd.rb

57 lines
1.6 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Gd < Formula
homepage 'https://bitbucket.org/libgd/gd-libgd'
# libgd doesn't have their latest (non-alpha) version.
# When they do release a stable version, use that url.
# Watch this space: http://libgd.bitbucket.org/pages/downloads.html
url 'http://download.osgeo.org/mapserver/libgd/gd-2.0.36RC1.tar.gz'
sha1 '21cf2ec93fd80836fc0cb4741201f7cc5440819a'
2011-04-04 20:33:56 +00:00
head 'https://bitbucket.org/libgd/gd-libgd', :using => :hg
option :universal
2013-02-01 00:13:19 +00:00
depends_on :libpng => :recommended
depends_on 'jpeg' => :recommended
depends_on 'giflib' => :optional
depends_on :freetype => :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?
2013-07-19 16:01:49 +00:00
args = %W{--disable-dependency-tracking --prefix=#{prefix}}
2013-02-01 00:13:19 +00:00
args << "--without-freetype" unless build.with? 'freetype'
2012-09-02 07:58:21 +00:00
system "./configure", *args
system "make install"
(lib+'pkgconfig/gdlib.pc').write pc_file
end
def pc_file; <<-EOS.undent
prefix=#{opt_prefix}
exec_prefix=${prefix}
libdir=/${exec_prefix}/lib
includedir=/${prefix}/include
bindir=/${prefix}/bin
ldflags= -L/${prefix}/lib
Name: gd
Description: A graphics library for quick creation of PNG or JPEG images
Version: #{version}
Requires:
Libs: -L${libdir} -lgd
Libs.private: -ljpeg -lpng12 -lz -lm
Cflags: -I${includedir}
EOS
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
2013-07-12 14:44:53 +00:00
system "#{bin}/pngtogd", "/usr/share/doc/cups/images/cups.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