homebrew-core/Formula/dhcping.rb
Andrew Janke 96a6512bd7 dhcping, dnstracer: add mirrors
Closes Homebrew/homebrew#42703.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-08-10 00:02:41 +01:00

19 lines
809 B
Ruby

class Dhcping < Formula
desc "Perform a dhcp-request to check whether a dhcp-server is running"
homepage "http://www.mavetju.org/unix/general.php"
url "http://www.mavetju.org/download/dhcping-1.2.tar.gz"
mirror "https://mirrors.kernel.org/debian/pool/main/d/dhcping/dhcping_1.2.orig.tar.gz"
sha256 "32ef86959b0bdce4b33d4b2b216eee7148f7de7037ced81b2116210bc7d3646a"
bottle do
cellar :any
sha256 "7741adb9bc166ee2450e521f7468e2b023632e737eb4da065848c5e87b6bd35a" => :yosemite
sha256 "49206410d2fc5259798c2a76ee871df08c54772d1501d7ce1d29be652d600905" => :mavericks
sha256 "4da8d1813dd16242c02ccea50549ac5eca0048475f9a6118b525677d6c72fda2" => :mountain_lion
end
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make", "install"
end
end