blob: 677698f42c9190ccbb2f183c3d2d6909adf0e327 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Visitors < Formula
  url 'http://www.hping.org/visitors/visitors-0.7.tar.gz'
  homepage 'http://www.hping.org/visitors/'
  sha1 'cdccdfb82001c7c3dadf68456574cac1a5d941e3'
  def install
    system "make"
    # There is no "make install", so do it manually
    bin.install "visitors"
    man1.install "visitors.1"
  end
end
  |