homebrew-core/Formula/known_hosts.rb
Jannis Leidel 1fefb28527 known_hosts 0.0.4
Closes Homebrew/homebrew#29666.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-05-31 13:41:28 -07:00

15 lines
361 B
Ruby

require "formula"
class KnownHosts < Formula
homepage "https://github.com/markmcconachie/known_hosts"
url "https://github.com/markmcconachie/known_hosts/archive/0.0.4.tar.gz"
sha1 "72edc388949e761932f05815fcd6fda2224ccdd4"
def install
system "make", "PREFIX=#{prefix}", "install"
end
test do
system "#{bin}/known_hosts version"
end
end