homebrew-core/Formula/pngcrush.rb
Alex Pretzlav 366e007d73 pngcrush 1.7.47
Closes Homebrew/homebrew#17538.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-02 11:42:47 -08:00

20 lines
682 B
Ruby

require 'formula'
class Pngcrush < Formula
homepage 'http://pmt.sourceforge.net/pngcrush/'
url 'http://downloads.sourceforge.net/project/pmt/pngcrush/1.7.47/pngcrush-1.7.47.tar.gz'
sha1 '0bc1b5a78a665201777db59d72e409a3a425c1d1'
def install
# Required to successfully build the bundled zlib 1.2.6
ENV.append_to_cflags "-DZ_SOLO"
# Required to enable "-cc" (color counting) option (disabled by default since 1.5.1)
ENV.append_to_cflags "-DPNGCRUSH_COUNT_COLORS"
system "make", "CC=#{ENV.cc}",
"LD=#{ENV.cc}",
"CFLAGS=#{ENV.cflags}",
"LDFLAGS=#{ENV.ldflags}"
bin.install 'pngcrush'
end
end