homebrew-core/Formula/pngcrush.rb

18 lines
431 B
Ruby
Raw Normal View History

require 'formula'
class Pngcrush <Formula
homepage 'http://pmt.sourceforge.net/pngcrush/'
2010-01-13 05:12:09 +00:00
url "http://downloads.sourceforge.net/sourceforge/pmt/pngcrush-1.7.7.tar.bz2"
md5 '0ac097be4c7eb28504f8a583ee92b103'
def install
# use our CFLAGS, LDFLAGS, CC, and LD
2010-01-13 11:06:52 +00:00
inreplace 'Makefile' do |contents|
contents.remove_make_var! %w[CFLAGS LDFLAGS CC LD]
end
system "make"
2009-06-14 23:55:18 +00:00
bin.install 'pngcrush'
end
end