blob: 1af87c8bcbdf22b6d25daace90523652ecb34971 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class Netcat < Formula
homepage "http://netcat.sourceforge.net/"
url "https://downloads.sourceforge.net/project/netcat/netcat/0.7.1/netcat-0.7.1.tar.bz2"
sha1 "b761d70fe9e3e8b3fe33a329b9bc31300dc04d11"
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--infodir=#{info}"
system "make", "install"
end
end
|