homebrew-core/Formula/fping.rb

18 lines
420 B
Ruby

require 'formula'
class Fping < Formula
homepage 'http://fping.org/'
url 'http://fping.org/dist/fping-3.9.tar.gz'
sha1 '4bbd659abc800fde0333799b223c068b3bb303a7'
head 'https://github.com/schweikert/fping.git'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-ipv6"
system "make install"
end
end