43 lines
2.0 KiB
Ruby
43 lines
2.0 KiB
Ruby
class CKermit < Formula
|
|
desc "Scriptable network and serial communication for UNIX and VMS"
|
|
homepage "https://www.kermitproject.org/"
|
|
url "https://www.kermitproject.org/ftp/kermit/archives/cku302.tar.gz"
|
|
version "9.0.302"
|
|
sha256 "0d5f2cd12bdab9401b4c836854ebbf241675051875557783c332a6a40dac0711"
|
|
license "BSD-3-Clause"
|
|
|
|
# C-Kermit archive file names only contain the patch version and the full
|
|
# version has to be obtained from text on the project page.
|
|
livecheck do
|
|
url "https://www.kermitproject.org/ckermit.html"
|
|
regex(/The current C-Kermit release is v?(\d+(?:\.\d+)+) /i)
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "d955b3b42d7645769fddf390632af6f113969c349f72677cd1581a86f8b82892"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "8f78db34bdbe18b861392eb2ef15aa8d1cf7f869f6bbcaadcb4633bef72965b6"
|
|
sha256 cellar: :any_skip_relocation, catalina: "fea40d461340389165bcaf8ce5fa074d703baef9a44252d25b3a0f96c29660cf"
|
|
sha256 cellar: :any_skip_relocation, mojave: "3021e5f091b9bd56f3b5b1f289552ba83b1d6c10b229fac9aaeb8bbbecdc6f6e"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "b6eae07c8d3365501f4e13af80b54ded073a2b1fc09fa885a445c7f52d96d589"
|
|
sha256 cellar: :any_skip_relocation, sierra: "b19ecd36ee298cba626b1276c228cdb4ee57726cf5af64166d8ff2800067e926"
|
|
sha256 cellar: :any_skip_relocation, el_capitan: "446776aff790c8f3b6f30be915dc18f4beffa973b92201384682beb7dc714562"
|
|
sha256 cellar: :any_skip_relocation, yosemite: "fe01b123ec7cddfbf46908bbf2071542a92f195d75733230896b5de78d92cdef"
|
|
end
|
|
|
|
def install
|
|
system "make", "macosx"
|
|
man1.mkpath
|
|
|
|
# The makefile adds /man to the end of manroot when running install
|
|
# hence we pass share here, not man. If we don't pass anything it
|
|
# uses {prefix}/man
|
|
system "make", "prefix=#{prefix}", "manroot=#{share}", "install"
|
|
end
|
|
|
|
test do
|
|
assert_match "C-Kermit #{version}",
|
|
shell_output("#{bin}/kermit -C VERSION,exit")
|
|
end
|
|
end
|