2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Pngcrush < Formula
|
2009-09-28 03:43:50 +00:00
|
|
|
homepage 'http://pmt.sourceforge.net/pngcrush/'
|
2012-11-04 17:10:50 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/pmt/pngcrush/1.7.41/pngcrush-1.7.41.tar.gz'
|
|
|
|
sha1 '1048f086479c5b7660eabbf5bbd426ba1d53026c'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
|
|
|
def install
|
2012-04-18 20:53:57 +00:00
|
|
|
# Required to successfully build the bundled zlib 1.2.6
|
|
|
|
ENV.append_to_cflags "-DZ_SOLO"
|
2012-09-13 12:49:56 +00:00
|
|
|
# Required to enable "-cc" (color counting) option (disabled by default since 1.5.1)
|
|
|
|
ENV.append_to_cflags "-DPNGCRUSH_COUNT_COLORS"
|
2012-04-18 20:53:57 +00:00
|
|
|
|
2012-03-11 21:43:58 +00:00
|
|
|
system "make", "CC=#{ENV.cc}",
|
|
|
|
"LD=#{ENV.cc}",
|
|
|
|
"CFLAGS=#{ENV.cflags}",
|
|
|
|
"LDFLAGS=#{ENV.ldflags}"
|
2009-06-14 23:55:18 +00:00
|
|
|
bin.install 'pngcrush'
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
2009-07-31 00:28:27 +00:00
|
|
|
end
|