aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorChristopher Eby2013-07-07 10:49:45 -0500
committerMisty De Meo2013-07-08 23:20:35 -0700
commitb224721732cbdd1b3738dcc8ef2aa2c7cceac481 (patch)
tree4884214a7cfeefc603671d8160dd416c33dd147a /Library
parent7ac9258521be01feb0aba09410a68db08bba466e (diff)
downloadhomebrew-b224721732cbdd1b3738dcc8ef2aa2c7cceac481.tar.bz2
knock 0.6
* Update formula for changes in build scripts * Avoid installing the man page for a binary we don't include Closes #21056. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/knock.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/knock.rb b/Library/Formula/knock.rb
index 148451052..e258806b4 100644
--- a/Library/Formula/knock.rb
+++ b/Library/Formula/knock.rb
@@ -2,14 +2,13 @@ require 'formula'
class Knock < Formula
homepage 'http://www.zeroflux.org/projects/knock'
- url 'http://www.zeroflux.org/proj/knock/files/knock-0.5.tar.gz'
- sha1 '26f3b2f2d698bc6978390ef6e93c628361605059'
+ url 'http://www.zeroflux.org/proj/knock/files/knock-0.6.tar.gz'
+ sha1 '38bfee90ba3af780b3f8dc1179f0c52d47b60d2c'
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make knock man"
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make knock"
bin.install "knock"
- man1.install Dir["doc/*.1"]
+ man1.install "doc/knock.1"
end
end