OptiPNG 0.6.3

OptiPNG is a PNG optimizer that recompresses image files to a smaller
size, without losing any information.

http://optipng.sourceforge.net/
master
Jonathan Wright 2010-01-04 18:00:47 +13:00 committed by Max Howell
parent 0deb232437
commit cba64319aa
1 changed files with 14 additions and 0 deletions

14
Formula/optipng.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Optipng <Formula
url 'http://downloads.sourceforge.net/optipng/optipng-0.6.3.tar.gz'
homepage 'http://optipng.sourceforge.net/'
md5 '6cef405197a878acff4c6216cf38e871'
def install
inreplace 'src/scripts/gcc.mak.in', '/usr/local', prefix
inreplace 'src/scripts/gcc.mak.in', 'mandir=$(prefix)/man', 'mandir=$(prefix)/share/man'
system "./configure", "-with-system-zlib"
system "make install"
end
end