iproute2mac 1.1.0 (new formula)

Closes Homebrew/homebrew#45778.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Bronislav Robenek 2015-11-07 13:49:16 +01:00 committed by Mike McQuaid
parent 7185c41f4f
commit b8308c47e3

18
Formula/iproute2mac.rb Normal file
View file

@ -0,0 +1,18 @@
class Iproute2mac < Formula
desc "CLI wrapper for basic network utilities on Mac OS X - ip command"
homepage "https://github.com/brona/iproute2mac"
url "http://github.com/brona/iproute2mac/archive/v1.1.0.tar.gz"
sha256 "3149dc23d5487e837646f50572d512a31799c74cf21288609887cbf8e465d4e6"
depends_on :python if MacOS.version <= :snow_leopard
def install
bin.install "src/ip.py" => "ip"
end
test do
system "#{bin}/ip", "route"
system "#{bin}/ip", "address"
system "#{bin}/ip", "neigh"
end
end