aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/theharvester.rb
blob: 348675100a11a150f3d656435e0019e8ecf1f60f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Theharvester < Formula
  homepage 'https://code.google.com/p/theharvester/'
  url 'https://theharvester.googlecode.com/files/theHarvester-2.2a.tar.gz'
  sha1 'e02661ed6dd8d9d48d476ccee99878e15f67842a'

  depends_on :python

  def install
    libexec.install Dir['*']
    (libexec/'theHarvester.py').chmod 0755
    bin.install_symlink libexec/'theHarvester.py' => 'theharvester'
  end

  test do
    output = `#{bin}/theharvester -d example.com -l 1 -b google 2>&1`.strip
    assert_match /nobody@example\.com/, output
  end
end