aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libpng.rb
blob: 09b738c2b59331b1f41153ef074ad21c86cc4b57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Libpng <Formula
  @url='http://prdownloads.sourceforge.net/libpng/libpng-1.2.40.tar.gz'
  @homepage='http://www.libpng.org/pub/png/libpng.html'
  @md5='a2f6808735bf404967f81519a967fb2a'

  def keg_only?
    :provided_by_osx
  end

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end