blob: dfb21a9a3b924630ceac97f3d848db87335aacec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|