33 lines
1.1 KiB
Ruby
33 lines
1.1 KiB
Ruby
class Miniupnpc < Formula
|
|
desc "UPnP IGD client library and daemon"
|
|
homepage "https://miniupnp.tuxfamily.org"
|
|
url "https://miniupnp.tuxfamily.org/files/download.php?file=miniupnpc-2.1.tar.gz"
|
|
sha256 "e19fb5e01ea5a707e2a8cb96f537fbd9f3a913d53d804a3265e3aeab3d2064c6"
|
|
|
|
# We only match versions with only a major/minor since versions like 2.1 are
|
|
# stable and versions like 2.1.20191224 are unstable/development releases.
|
|
livecheck do
|
|
url "https://miniupnp.tuxfamily.org/files/"
|
|
regex(/href=.*?miniupnpc[._-]v?(\d+\.\d+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
cellar :any
|
|
rebuild 1
|
|
sha256 "fd72b75df14dc0a23f566031fbddef7110acf0e90b34092ef09ef62fa74a6117" => :catalina
|
|
sha256 "78f72e56f2edb01fb2d7949836050cca173fe9c342b602c7b9c3a8dc31693849" => :mojave
|
|
sha256 "ac7dcda27fedebab8e8c47ce08c74283626a0169b646a09b34de5bd91b673e1a" => :high_sierra
|
|
end
|
|
|
|
conflicts_with "wownero", because: "wownero ships its own copy of miniupnpc"
|
|
|
|
def install
|
|
system "make", "INSTALLPREFIX=#{prefix}", "install"
|
|
end
|
|
|
|
test do
|
|
output = shell_output("#{bin}/upnpc --help 2>&1", 1)
|
|
assert_match version.to_s, output
|
|
end
|
|
end
|