diff options
| author | Adam Vandenberg | 2012-02-20 22:07:32 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-20 22:07:32 -0800 |
| commit | aca90fce26228a3a6665704c3f6e089c79e378d8 (patch) | |
| tree | 02e01bf400667525c7efab0fdd450a5da757ec6c /Library/Formula | |
| parent | c9c5b5291dd1ee15a41a68d359d3f03074cf109d (diff) | |
| download | homebrew-aca90fce26228a3a6665704c3f6e089c79e378d8.tar.bz2 | |
binwalk 0.4.2
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/binwalk.rb | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/Library/Formula/binwalk.rb b/Library/Formula/binwalk.rb index 6eadc1092..decda5432 100644 --- a/Library/Formula/binwalk.rb +++ b/Library/Formula/binwalk.rb @@ -1,18 +1,17 @@ require 'formula' class Binwalk < Formula - url 'http://binwalk.googlecode.com/files/binwalk-0.4.1.tar.gz' homepage 'http://code.google.com/p/binwalk/' - md5 '95e04f44b4664ba2a7cbe370e1439530' + url 'http://binwalk.googlecode.com/files/binwalk-0.4.2.tar.gz' + md5 '9559d114760f6a58825004b4379fd95f' depends_on 'libmagic' def install - Dir.chdir "src" - system "./configure", "--disable-debug", - "--disable-dependency-tracking", - "--prefix=#{prefix}" - system "make" - system "make install" + cd "src" do + system "./configure", "--prefix=#{prefix}" + system "make" + system "make install" + end end end |
