blob: 3979b8ba1120d54ab22a39456b7dd7516310e355 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
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
  |