homebrew-core/Formula/optipng.rb

15 lines
429 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Optipng < Formula
homepage 'http://optipng.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/optipng/OptiPNG/optipng-0.7.3/optipng-0.7.3.tar.gz'
sha1 'c5dd2c688820f34fb6973d109ca880a77141cd31'
def install
2012-03-22 03:23:47 +00:00
system "./configure", "--with-system-zlib",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end