2010-08-20 07:52:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Liboping < Formula
|
2010-08-20 07:52:13 +00:00
|
|
|
homepage 'http://verplant.org/liboping/'
|
2012-05-17 23:53:39 +00:00
|
|
|
url 'http://verplant.org/liboping/files/liboping-1.6.2.tar.bz2'
|
|
|
|
sha256 '5f4ab4b127b5a8a79ab771002604bff0e2903622393e5602f336cad258bb73cf'
|
2010-08-20 07:52:13 +00:00
|
|
|
|
|
|
|
def install
|
2012-05-17 23:53:39 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
2010-08-20 07:52:13 +00:00
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
2011-10-30 20:17:41 +00:00
|
|
|
|
|
|
|
def caveats
|
|
|
|
"Run oping and noping sudo'ed in order to avoid the 'Operation not permitted'"
|
|
|
|
end
|
2010-08-20 07:52:13 +00:00
|
|
|
end
|