blob: 2916a1450a25b2eb2731fd81d25ccecc2ee98837 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | require 'formula'
class Gd <Formula
  url "http://www.libgd.org/releases/gd-2.0.36RC1.tar.gz"
  homepage "http://www.libgd.org"
  md5 "39ac48e6d5e0012a3bd2248a0102f209"
  depends_on 'jpeg' => :recommended
  def install
    ENV.libpng
    system "./configure", "--prefix=#{prefix}", "--with-freetype=/usr/X11"
    system "make install"
  end
end
 |