e4fc8f9da9
Upgrade arping to version 2.11. Remove the patch that's not needed anymore due to changes upstream. Tested on Lion using clang and llvm-gcc, then pinging my router by ip address. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
436 B
Ruby
16 lines
436 B
Ruby
require 'formula'
|
|
|
|
class Arping < Formula
|
|
homepage 'https://github.com/ThomasHabets/arping'
|
|
url 'https://github.com/ThomasHabets/arping/tarball/arping-2.11'
|
|
sha1 '8a02193f3f1d2faaf717c0ea31c42d5c1aeb826e'
|
|
|
|
depends_on 'libnet'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|