fff450e194
Because OS X provides it and you shouldn't be linking against our version unintentionally.
16 lines
405 B
Ruby
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
|