95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
10 lines
388 B
Ruby
10 lines
388 B
Ruby
class Dnsmap < Formula
|
|
desc "Passive DNS network mapper (a.k.a. subdomains bruteforcer)"
|
|
homepage "https://code.google.com/p/dnsmap/"
|
|
url "https://dnsmap.googlecode.com/files/dnsmap-0.30.tar.gz"
|
|
sha256 "fcf03a7b269b51121920ac49f7d450241306cfff23c76f3da94b03792f6becbc"
|
|
|
|
def install
|
|
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}", "BINDIR=#{bin}", "install"
|
|
end
|
|
end
|