homebrew-core/Formula/libpng.rb
2014-03-22 20:57:30 -05:00

26 lines
779 B
Ruby

require "formula"
class Libpng < Formula
homepage "http://www.libpng.org/pub/png/libpng.html"
url "https://downloads.sf.net/project/libpng/libpng16/1.6.10/libpng-1.6.10.tar.gz"
sha1 "cf81cf7df631bbfa649600b9a45d966b6bccac25"
bottle do
cellar :any
sha1 "2b2d8eb191f8594258a53b8d0b806d344f2422db" => :mavericks
sha1 "d201d4795bcb3b09981e481ce5235813e45bb4fe" => :mountain_lion
sha1 "342448c83cef71c98f66ba068271129acab204fc" => :lion
end
keg_only :provided_pre_mountain_lion
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make install"
end
end