homebrew-core/Formula/libpng.rb

25 lines
728 B
Ruby
Raw Normal View History

require 'formula'
class Libpng < Formula
homepage 'http://www.libpng.org/pub/png/libpng.html'
url 'http://downloads.sf.net/project/libpng/libpng15/older-releases/1.5.14/libpng-1.5.14.tar.gz'
sha1 '67f20d69564a4a50204cb924deab029f11ad2d3c'
2012-08-11 15:02:16 +00:00
bottle do
2013-03-17 14:14:22 +00:00
sha1 '5e7feb640d654df0c2ac072d86e46ce9df9eaeee' => :mountain_lion
sha1 'bbd94d671653943cf21314911978d90f5fb536df' => :lion
sha1 'fb685cfb8b37b883bf004ee7c9ca785d3435b155' => :snow_leopard
2012-08-11 15:02:16 +00:00
end
keg_only :provided_pre_mountain_lion
option :universal
def install
2012-08-24 17:42:48 +00:00
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end