blob: dcce904e6b1c7d4cc6f62292669d8e9afae9b7eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Pngcrush <Formula
homepage 'http://pmt.sourceforge.net/pngcrush/'
url "http://downloads.sourceforge.net/sourceforge/pmt/pngcrush-1.7.7.tar.bz2"
md5 '0ac097be4c7eb28504f8a583ee92b103'
def install
# use our CFLAGS, LDFLAGS, CC, and LD
inreplace 'Makefile' do |contents|
contents.remove_make_var! %w[CFLAGS LDFLAGS CC LD]
end
system "make"
bin.install 'pngcrush'
end
end
|