2012-08-04 13:11:06 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pngquant < Formula
|
|
|
|
homepage 'http://pngquant.org/'
|
2013-03-29 20:29:20 +00:00
|
|
|
url 'https://github.com/pornel/improved-pngquant/archive/1.8.3.tar.gz'
|
|
|
|
sha1 'c2bb7e5fecc1137aa19cf684b2f05f0cb74ca6e0'
|
2012-08-04 13:11:06 +00:00
|
|
|
|
|
|
|
head 'https://github.com/pornel/improved-pngquant.git'
|
|
|
|
|
|
|
|
depends_on :libpng
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV.append_to_cflags "-DNDEBUG" # Turn off debug
|
|
|
|
system "make", "PREFIX=#{prefix}", "CC=#{ENV.cc}"
|
|
|
|
bin.install 'pngquant'
|
|
|
|
man1.install 'pngquant.1'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/pngquant", "--help"
|
|
|
|
end
|
|
|
|
end
|