homebrew-core/Formula/known_hosts.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

14 lines
414 B
Ruby

class KnownHosts < Formula
desc "Command-line manager for known hosts"
homepage "https://github.com/markmcconachie/known_hosts"
url "https://github.com/markmcconachie/known_hosts/archive/0.0.4.tar.gz"
sha256 "8608f798a860c8dc47ca2be6b1976bb56f8d70a8293a5a22544ad2b7ccdef1ed"
def install
system "make", "PREFIX=#{prefix}", "install"
end
test do
system "#{bin}/known_hosts version"
end
end