blob: 075cc892c02262b8f5ffdd73607b40dae74ca63a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Tcping < Formula
url 'http://www.linuxco.de/tcping/tcping-1.3.5.tar.gz'
homepage 'http://www.linuxco.de/tcping/tcping.html'
sha1 'ecc5fe7fb2f8e86a1fc2d09651310b26fa922c7b'
def install
system "make"
bin.install 'tcping'
end
end
|