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-09-04 15:48:00 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/pmt/pngcrush/1.7.37/pngcrush-1.7.37.tar.gz'
|
|
|
|
sha1 'b301cb451ddfa975f60875100c8ade49d5f89087'
|
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-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
|