homebrew-core/Formula/fping.rb

23 lines
519 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Fping < Formula
homepage 'http://fping.org/'
url 'https://github.com/schweikert/fping/tarball/3.1'
sha1 '1584e662ef3ba08e239e626df73ec74bc34548ee'
head 'https://github.com/schweikert/fping.git'
def install
system './configure', "--prefix=#{prefix}", '--disable-dependency-tracking'
system "make install"
end
def caveats; <<-EOS.undent
fping can only be run by root by default so either use sudo to run fping or
setuid root #{sbin}/fping
EOS
end
end