szl is Google's compiler for Sawzall
This commit is contained in:
parent
1a89a950f5
commit
1a2dc08594
1 changed files with 17 additions and 0 deletions
17
Formula/szl.rb
Normal file
17
Formula/szl.rb
Normal file
|
@ -0,0 +1,17 @@
|
|||
require 'formula'
|
||||
|
||||
class Szl <Formula
|
||||
url 'http://szl.googlecode.com/files/szl-1.0.tar.gz'
|
||||
homepage 'http://code.google.com/p/szl/'
|
||||
md5 'd25f73b2adf4b92229d8b451685506d1'
|
||||
|
||||
depends_on 'binutils' # For objdump
|
||||
depends_on 'icu4c'
|
||||
|
||||
def install
|
||||
ENV['OBJDUMP'] = "#{HOMEBREW_PREFIX}/bin/gobjdump"
|
||||
system "./configure", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue