77 lines
2.6 KiB
Ruby
77 lines
2.6 KiB
Ruby
class Kcptun < Formula
|
|
desc "Stable & Secure Tunnel based on KCP with N:M multiplexing and FEC"
|
|
homepage "https://github.com/xtaci/kcptun"
|
|
url "https://github.com/xtaci/kcptun/archive/v20200701.tar.gz"
|
|
sha256 "d5b2d212c6806f1c4eba5fbce8797734eaa8ae0f8cdd90dd06d0844392888ff0"
|
|
license "MIT"
|
|
head "https://github.com/xtaci/kcptun.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "6b2353c5753b2266b6dc9cbdfe8f4bc9266b299f1bcf2fea100b8276fa2c4074" => :catalina
|
|
sha256 "e5fb829f053fd71f14b8f290fabd22f87fd6961be01f1feb75df2c43c6753150" => :mojave
|
|
sha256 "872b2cc7078e268c38a78ed3e98cc7d6b201426584f57f11ee7c231cdcbdfe16" => :high_sierra
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
system "go", "build", "-ldflags", "-X main.VERSION=#{version} -s -w",
|
|
"-o", bin/"kcptun_client", "github.com/xtaci/kcptun/client"
|
|
system "go", "build", "-ldflags", "-X main.VERSION=#{version} -s -w",
|
|
"-o", bin/"kcptun_server", "github.com/xtaci/kcptun/server"
|
|
|
|
etc.install "examples/local.json" => "kcptun_client.json"
|
|
end
|
|
|
|
plist_options manual: "#{HOMEBREW_PREFIX}/opt/kcptun/bin/kcptun_client -c #{HOMEBREW_PREFIX}/etc/kcptun_client.json"
|
|
|
|
def plist
|
|
<<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/kcptun_client</string>
|
|
<string>-c</string>
|
|
<string>#{etc}/kcptun_client.json</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<dict>
|
|
<key>Crashed</key>
|
|
<true/>
|
|
<key>SuccessfulExit</key>
|
|
<false/>
|
|
</dict>
|
|
<key>ProcessType</key>
|
|
<string>Background</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/kcptun.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/kcptun.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
server = fork { exec bin/"kcptun_server", "-t", "1.1.1.1:80" }
|
|
client = fork { exec bin/"kcptun_client", "-r", "127.0.0.1:29900", "-l", ":12948" }
|
|
sleep 1
|
|
begin
|
|
assert_match "cloudflare", shell_output("curl -vI http://127.0.0.1:12948/")
|
|
ensure
|
|
Process.kill 9, server
|
|
Process.wait server
|
|
Process.kill 9, client
|
|
Process.wait client
|
|
end
|
|
end
|
|
end
|