aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/whatmask.rb
blob: 9e15e0f5469a9fe43b08c21f5bdccef6b4758912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'formula'

class Whatmask < Formula
  url 'http://downloads.laffeycomputer.com/current_builds/whatmask/whatmask-1.2.tar.gz'
  homepage 'http://www.laffeycomputer.com/whatmask.html'
  md5 '26aeff74dbba70262ccd426e681dcf4a'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--mandir=#{man}",
                          "--prefix=#{prefix}"
    system "make install"
  end

  def test
    %x[#{bin}/whatmask /24].eql? <<-EOS

---------------------------------------------
       TCP/IP SUBNET MASK EQUIVALENTS
---------------------------------------------
CIDR = .....................: /24
Netmask = ..................: 255.255.255.0
Netmask (hex) = ............: 0xffffff00
Wildcard Bits = ............: 0.0.0.255
Usable IP Addresses = ......: 254

EOS
  end
end