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-07-31 01:20:16 +00:00
|
|
|
url 'http://sourceforge.net/projects/pmt/files/pngcrush/1.7.34/pngcrush-1.7.34.tar.gz'
|
|
|
|
sha1 '6f0252027b93f02fddbff448f259c60924772e39'
|
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
|