homebrew-core/Formula/libpng.rb
Max Howell fff450e194 Make libpng keg_only
Because OS X provides it and you shouldn't be linking against our version unintentionally.
2009-10-12 22:41:16 +01:00

16 lines
405 B
Ruby

require 'brewkit'
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