homebrew-core/Formula/optipng.rb

15 lines
420 B
Ruby

require 'formula'
class Optipng < Formula
homepage 'http://optipng.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/optipng/OptiPNG/optipng-0.7.1/optipng-0.7.1.tar.gz'
md5 'b6181d566998ad489397b985ebfc4a03'
def install
system "./configure", "--with-system-zlib",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end