16 lines
361 B
Ruby
16 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
|