homebrew-core/Formula/grepcidr.rb

13 lines
386 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Grepcidr < Formula
desc "Filter IP addresses matching IPv4 CIDR/network specification"
2014-05-26 15:09:23 +00:00
homepage "http://www.pc-tools.net/unix/grepcidr/"
url "http://www.pc-tools.net/files/unix/grepcidr-2.0.tar.gz"
sha256 "61886a377dabf98797145c31f6ba95e6837b6786e70c932324b7d6176d50f7fb"
def install
system "make"
2014-05-26 15:09:23 +00:00
bin.install "grepcidr"
2014-05-31 14:54:21 +00:00
man1.install "grepcidr.1"
end
end