blob: 2e8b226852857e985f17801dafcaf428f35adbbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
require 'formula'
class Dhcping < Formula
  homepage 'http://www.mavetju.org'
  url 'http://www.mavetju.org/download/dhcping-1.2.tar.gz'
  sha1 '97927886adc1e5b3a67c55f9010a918e2e880f1e'
  def install
    system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
    system "make install"
  end
end
  |