13 lines
309 B
Ruby
13 lines
309 B
Ruby
require "formula"
|
|
|
|
class Grepcidr < Formula
|
|
homepage "http://www.pc-tools.net/unix/grepcidr/"
|
|
url "http://www.pc-tools.net/files/unix/grepcidr-2.0.tar.gz"
|
|
sha1 "5ec8cf18acbf92851b632d297b9fd6ee77c523ba"
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "grepcidr"
|
|
man1.install "grepcidr.1"
|
|
end
|
|
end
|