40 lines
1.7 KiB
Ruby
40 lines
1.7 KiB
Ruby
class Whatmask < Formula
|
|
desc "Network settings helper"
|
|
homepage "http://www.laffeycomputer.com/whatmask.html"
|
|
url "https://web.archive.org/web/20170107110521/downloads.laffeycomputer.com/current_builds/whatmask/whatmask-1.2.tar.gz"
|
|
sha256 "7dca0389e22e90ec1b1c199a29838803a1ae9ab34c086a926379b79edb069d89"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "61c0c22cf55881e970a1e2cd239eb805b0e32733abbcba959f8540fc4fb6c1b5" => :catalina
|
|
sha256 "acfac14343f3a746de062b9cbe300bcfb6287df43fd2c4ec5395f7c49e51e7ad" => :mojave
|
|
sha256 "a46f984a59776d23efc00fbae9841026547f5c4f3884c31007c06acae51d4881" => :high_sierra
|
|
sha256 "7d9c8318c69271c9b7774a4f84cd315f28986bd7dacc1f1c9a5451880a415a8b" => :sierra
|
|
sha256 "acf751e4893268ccbee1e48e9f7a147cc38f64a9d178fc50c810d65c0466a648" => :el_capitan
|
|
sha256 "428a92b2ba5a3f6f39009a7d3a7fc503b4308fadaeddc287b39fd6b5bdddef74" => :yosemite
|
|
sha256 "c07eb39e586dbc2b78b4c8cf8173c701ac654e4db0fd5fe12b3c7f80ee3ef577" => :mavericks
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--mandir=#{man}",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
assert_equal <<~EOS, shell_output("#{bin}/whatmask /24")
|
|
|
|
---------------------------------------------
|
|
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
|