14 lines
362 B
Ruby
14 lines
362 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Nuttcp < Formula
|
||
|
homepage 'http://www.nuttcp.net/nuttcp'
|
||
|
url 'ftp://ftp.lcp.nrl.navy.mil/pub/nuttcp/nuttcp-6.1.2.tar.bz2'
|
||
|
md5 'a16d4d6d5def02cea980e57feaf30500'
|
||
|
|
||
|
def install
|
||
|
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
|
||
|
bin.install 'nuttcp-6.1.2' => 'nuttcp'
|
||
|
man8.install 'nuttcp.cat' => 'nuttcp.8'
|
||
|
end
|
||
|
end
|