class Dnstwist < Formula desc "Test domains for typo squatting, phishing and corporate espionage" homepage "https://github.com/elceef/dnstwist" url "https://github.com/elceef/dnstwist/archive/v1.01.tar.gz" sha256 "6fae9f722ee711598fd23a93169a8539eaf2210410b75af22d9a4241d23da842" bottle do cellar :any sha256 "6d9fba8db2440ebd7f942fe60e0dc9d418697acf5226968b2c57170c2343f3d4" => :el_capitan sha256 "1aee3219cb6f784486d9630c73b1ca39aaeb9e6df0dc27949a4c90d974ac5eb4" => :yosemite sha256 "f7de05a469c237b2305d1ef7fb937d75dc4a7ec98905c8520b78f8b86bd72147" => :mavericks end depends_on :python if MacOS.version <= :snow_leopard depends_on "ssdeep" depends_on "geoip" resource "dnspython" do url "https://pypi.python.org/packages/source/d/dnspython/dnspython-1.12.0.zip" sha256 "63bd1fae61809eedb91f84b2185816fac1270ae51494fbdd36ea25f904a8502f" end resource "GeoIP" do url "https://pypi.python.org/packages/source/G/GeoIP/GeoIP-1.3.2.tar.gz" sha256 "a890da6a21574050692198f14b07aa4268a01371278dfc24f71cd9bc87ebf0e6" end resource "whois" do url "https://pypi.python.org/packages/source/w/whois/whois-0.7.tar.gz" sha256 "788ba4fa4986d06351c1572f63ef1576d26f3cd5ecf5d999934421540c87021c" end resource "requests" do url "https://pypi.python.org/packages/source/r/requests/requests-2.8.0.tar.gz" sha256 "b2f003589b60924909c0acde472590c5ea83906986a7a25b6f7929eb20923b7b" end resource "cffi" do url "https://pypi.python.org/packages/source/c/cffi/cffi-1.3.0.tar.gz" sha256 "9daa53aff0b5cf64c85c10eab7ce6776880d0ee71b78cedeae196ae82b6734e9" end resource "pycparser" do url "https://pypi.python.org/packages/source/p/pycparser/pycparser-2.14.tar.gz" sha256 "7959b4a74abdc27b312fed1c21e6caf9309ce0b29ea86b591fd2e99ecdf27f73" end resource "ssdeep" do url "https://pypi.python.org/packages/source/s/ssdeep/ssdeep-3.1.1.tar.gz" sha256 "a6c66309e6b540d5c8ba08c018675dabaef2172f2cc6f6351b67395ba7bf2ddd" end def install ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages" resources.each do |r| r.stage do system "python", *Language::Python.setup_install_args(libexec/"vendor") end end bin.install "dnstwist.py" => "dnstwist" (libexec/"bin/database").install "database/GeoIP.dat", "database/effective_tld_names.dat" bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"]) end test do output = shell_output("#{bin}/dnstwist github.com") assert_match /#{version}/, output assert_match /Processing \d+ domain variants/, output end end