7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
14 lines
401 B
Ruby
14 lines
401 B
Ruby
require 'formula'
|
|
|
|
class Libpng <Formula
|
|
url 'http://downloads.sourceforge.net/project/libpng/03-libpng-previous/1.2.43/libpng-1.2.43.tar.bz2'
|
|
homepage 'http://www.libpng.org/pub/png/libpng.html'
|
|
md5 '976909556e6613804d810405c1f72ce6'
|
|
|
|
keg_only :provided_by_osx
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|