diff options
| author | Eugene Ray | 2010-08-20 00:52:13 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-21 14:18:49 -0700 |
| commit | 01fda7f64eb94e4fb0346fe8afa7e8feb131ce69 (patch) | |
| tree | f6a3f58ffc910cfb3444de5860aded6508c74e5e | |
| parent | b2de7991e9539263187b8b8258e8fc504448b7d1 (diff) | |
| download | homebrew-01fda7f64eb94e4fb0346fe8afa7e8feb131ce69.tar.bz2 | |
adding liboping
* liboping is needed for collectd ping plugin
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/liboping.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/liboping.rb b/Library/Formula/liboping.rb new file mode 100644 index 000000000..1c542f76e --- /dev/null +++ b/Library/Formula/liboping.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Liboping <Formula + url 'http://verplant.org/liboping/files/liboping-1.4.0.tar.bz2' + homepage 'http://verplant.org/liboping/' + sha256 'ca237ca16607f982aa7b4405e8e3aeea2f655e9d39ba4aff77974c66ee9631bd' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
