homebrew-core/Formula/knock.rb
Christopher Eby 4d3fc2ef83 knock 0.6
* Update formula for changes in build scripts
* Avoid installing the man page for a binary we don't include

Closes Homebrew/homebrew#21056.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2013-07-08 23:20:35 -07:00

14 lines
393 B
Ruby

require 'formula'
class Knock < Formula
homepage 'http://www.zeroflux.org/projects/knock'
url 'http://www.zeroflux.org/proj/knock/files/knock-0.6.tar.gz'
sha1 '38bfee90ba3af780b3f8dc1179f0c52d47b60d2c'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make knock"
bin.install "knock"
man1.install "doc/knock.1"
end
end