52 lines
1.7 KiB
Ruby
52 lines
1.7 KiB
Ruby
class Telnetd < Formula
|
|
desc "TELNET server (built from macOS Sierra sources)"
|
|
homepage "https://opensource.apple.com/"
|
|
url "https://opensource.apple.com/tarballs/remote_cmds/remote_cmds-54.50.1.tar.gz"
|
|
sha256 "156ddec946c81af1cbbad5cc6e601135245f7300d134a239cda45ff5efd75930"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "491a7002f9649077f12835b8c94e22e240862cd48b833d80076de26b41399812" => :high_sierra
|
|
sha256 "933c4dcd343225ea93f09981bb7a92d152f0ad766214b4efd5fbbe8756a72873" => :sierra
|
|
sha256 "73e799af3062f0b86f86f34840bc2b6b82b0ac5d17d0b451ad52155182a69983" => :el_capitan
|
|
end
|
|
|
|
depends_on :xcode => :build
|
|
|
|
resource "libtelnet" do
|
|
url "https://opensource.apple.com/tarballs/libtelnet/libtelnet-13.tar.gz"
|
|
sha256 "e7d203083c2d9fa363da4cc4b7377d4a18f8a6f569b9bcf58f97255941a2ebd1"
|
|
end
|
|
|
|
def install
|
|
resource("libtelnet").stage do
|
|
xcodebuild "SYMROOT=build"
|
|
|
|
libtelnet_dst = buildpath/"telnetd.tproj/build/Products"
|
|
libtelnet_dst.install "build/Release/libtelnet.a"
|
|
libtelnet_dst.install "build/Release/usr/local/include/libtelnet/"
|
|
end
|
|
|
|
system "make",
|
|
"-C", "telnetd.tproj",
|
|
"OBJROOT=build/Intermediates",
|
|
"SYMROOT=build/Products",
|
|
"DSTROOT=build/Archive",
|
|
"CFLAGS=$(CC_Flags) -isystembuild/Products/",
|
|
"LDFLAGS=$(LD_Flags) -Lbuild/Products/"
|
|
|
|
sbin.install "telnetd.tproj/build/Products/telnetd"
|
|
man8.install "telnetd.tproj/telnetd.8"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
You may need super-user privileges to run this program properly. See the man
|
|
page for more details.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match "usage: telnetd", shell_output("#{sbin}/telnetd usage 2>&1", 1)
|
|
end
|
|
end
|