2011-03-10 05:11:03 +00:00
|
|
|
class Fping < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Scriptable ping program for checking if multiple hosts are up"
|
2014-05-21 06:44:04 +00:00
|
|
|
homepage "http://fping.org/"
|
|
|
|
url "http://fping.org/dist/fping-3.10.tar.gz"
|
2015-09-05 22:04:47 +00:00
|
|
|
mirror "https://mirrors.kernel.org/debian/pool/main/f/fping/fping_3.10.orig.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "cd47e842f32fe6aa72369d8a0e3545f7c137bb019e66f47379dc70febad357d8"
|
2012-04-28 21:06:50 +00:00
|
|
|
|
2014-05-21 06:44:04 +00:00
|
|
|
head "https://github.com/schweikert/fping.git"
|
2010-05-30 02:35:47 +00:00
|
|
|
|
|
|
|
def install
|
2012-11-25 19:42:57 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2013-11-07 14:24:16 +00:00
|
|
|
"--prefix=#{prefix}",
|
2014-03-17 16:01:08 +00:00
|
|
|
"--sbindir=#{bin}",
|
2013-11-07 14:24:16 +00:00
|
|
|
"--enable-ipv6"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2010-05-30 02:35:47 +00:00
|
|
|
end
|
|
|
|
end
|