23 lines
560 B
Ruby
23 lines
560 B
Ruby
class Swaks < Formula
|
|
desc "SMTP command-line test tool"
|
|
homepage "https://www.jetmore.org/john/code/swaks/"
|
|
url "https://www.jetmore.org/john/code/swaks/files/swaks-20201014.0.tar.gz"
|
|
sha256 "fb0a3b7d487a15b124ba6690f7b01a56617f1af2aa54233fd69013982de95a30"
|
|
license "GPL-2.0-or-later"
|
|
|
|
livecheck do
|
|
url "https://www.jetmore.org/john/code/swaks/versions.html"
|
|
regex(/href=.*?swaks[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "swaks"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/swaks", "--version"
|
|
end
|
|
end
|