homebrew-core/Formula/binwalk.rb
bart 1a6fc0be5d binwalk 0.4.5
Closes Homebrew/homebrew#14933.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-14 07:09:03 -07:00

17 lines
376 B
Ruby

require 'formula'
class Binwalk < Formula
homepage 'http://code.google.com/p/binwalk/'
url 'http://binwalk.googlecode.com/files/binwalk-0.4.5.tar.gz'
sha1 'cdc7918cada78b8d84c61a38d9c50a21704adfba'
depends_on 'libmagic'
def install
cd "src" do
system "./configure", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
end