homebrew-core/Formula/libpng.rb

27 lines
742 B
Ruby
Raw Normal View History

require 'formula'
class Libpng < Formula
homepage 'http://www.libpng.org/pub/png/libpng.html'
2013-11-28 00:47:17 +00:00
url 'http://downloads.sf.net/project/libpng/libpng15/1.5.17/libpng-1.5.17.tar.bz2'
sha1 '899d660104f3ef5c349c57faad10844b388f8442'
2012-08-11 15:02:16 +00:00
bottle do
2013-12-05 04:48:00 +00:00
cellar :any
revision 1
sha1 '039e4a626f4cbcbfa14349f86f33663ebc9d20d8' => :mavericks
sha1 '6f9f7ad1ea035e897845dc3f4d3909a92664dbb8' => :mountain_lion
sha1 '53e282b87f737dc16ddb0700585b5754cec6b913' => :lion
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