homebrew-core/Formula/binwalk.rb

26 lines
752 B
Ruby
Raw Normal View History

require 'formula'
class Binwalk < Formula
homepage 'http://code.google.com/p/binwalk/'
url 'https://binwalk.googlecode.com/files/binwalk-1.2.2-1.tar.gz'
sha1 '3422427a326f58a5b04616111ee66a8c2fddec1d'
depends_on 'libmagic' => 'with-python'
option 'with-matplotlib', 'Check for presence of matplotlib, which is required for entropy graphing support'
2014-01-04 13:02:23 +00:00
depends_on 'matplotlib' => :python if build.with? 'matplotlib'
depends_on :python
def install
2012-02-21 06:07:32 +00:00
cd "src" do
2014-01-04 13:02:23 +00:00
system "python", "setup.py", "install", "--no-prereq-checks", "--prefix=#{prefix}"
bin.env_script_all_files(libexec+'bin', :PYTHONPATH => ENV['PYTHONPATH'])
2012-02-21 06:07:32 +00:00
end
end
2014-01-04 14:53:54 +00:00
test do
touch "binwalk.test"
system "#{bin}/binwalk", "binwalk.test"
end
end