blob: 67e88e12134f59691100d1a6e2b4e9eff7ee2504 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|