diff options
| author | Eugene Vilensky | 2012-11-08 10:15:07 -0600 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-11-10 09:17:11 -0800 | 
| commit | 53ce9d661f1ebbcd58fe59c0973b704b59afbf68 (patch) | |
| tree | 83c386e3c7f9fd610c475ff661c59405d0845076 | |
| parent | efa13fd7207d9152e3e530b2701fc74f2ff94196 (diff) | |
| download | homebrew-53ce9d661f1ebbcd58fe59c0973b704b59afbf68.tar.bz2 | |
dhcping 1.2
Closes #15917.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/dhcping.rb | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/Library/Formula/dhcping.rb b/Library/Formula/dhcping.rb new file mode 100644 index 000000000..2e8b22685 --- /dev/null +++ b/Library/Formula/dhcping.rb @@ -0,0 +1,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 | 
