homebrew-core/Formula/binwalk.rb

68 lines
2.5 KiB
Ruby

class Binwalk < Formula
desc "Searches a binary image for embedded files and executable code"
homepage "http://binwalk.org/"
url "https://github.com/devttys0/binwalk/archive/v2.1.1.tar.gz"
sha256 "1b70a5b03489d29f60fef18008a2164974234874faab48a4f47ec53d461d284a"
revision 1
head "https://github.com/devttys0/binwalk.git"
bottle do
sha256 "7d923d9f5f12dad8e3a082b79e767d0bfb2178b3ae379a8f4451d231afa30923" => :el_capitan
sha256 "2f3890c8e50521c7987f963bc7a600c95477288d0a5f2a4edd696d4b9b461cfe" => :yosemite
sha256 "70c17ab802c7b2f7f01683aee7e787c8a20500d2f477b573228fc3a047a5a07c" => :mavericks
end
option "with-matplotlib", "Check for presence of matplotlib, which is required for entropy graphing support"
option "with-capstone", "Enable disasm options via capstone"
depends_on "swig" => :build
depends_on :fortran
depends_on "matplotlib" => :python if build.with? "matplotlib"
depends_on "pyside"
depends_on :python if MacOS.version <= :snow_leopard
depends_on "p7zip"
depends_on "ssdeep"
depends_on "xz"
resource "pyqtgraph" do
url "http://www.pyqtgraph.org/downloads/pyqtgraph-0.9.10.tar.gz"
sha256 "4c0589774e3c8b0c374931397cf6356b9cc99a790215d1917bb7f015c6f0729a"
end
resource "numpy" do
url "https://pypi.python.org/packages/source/n/numpy/numpy-1.10.2.tar.gz"
sha256 "23a3befdf955db4d616f8bb77b324680a80a323e0c42a7e8d7388ef578d8ffa9"
end
resource "scipy" do
url "https://downloads.sourceforge.net/project/scipy/scipy/0.16.1/scipy-0.16.1.tar.gz"
sha256 "ecd1efbb1c038accb0516151d1e6679809c6010288765eb5da6051550bf52260"
end
resource "capstone" do
url "https://pypi.python.org/packages/source/c/capstone/capstone-3.0.4.tar.gz"
sha256 "945d3b8c3646a1c3914824c416439e2cf2df8969dd722c8979cdcc23b40ad225"
end
def install
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages"
res = %w[numpy scipy pyqtgraph]
res += %w[capstone] if build.with? "capstone"
res.each do |r|
resource(r).stage do
system "python", *Language::Python.setup_install_args(libexec/"vendor")
end
end
ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python2.7/site-packages"
system "python", *Language::Python.setup_install_args(libexec)
bin.install Dir["#{libexec}/bin/*"]
bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"])
end
test do
touch "binwalk.test"
system "#{bin}/binwalk", "binwalk.test"
end
end