76 lines
2.5 KiB
Ruby
76 lines
2.5 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/v20200226.tar.gz"
|
|
sha256 "3d3c342b6073a199f3daa926f1b1d221d50d385fd6905bf00286b0f874439822"
|
|
head "https://github.com/xtaci/kcptun.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "0f5139bf8e439645ef66182fe5ba32a9010f1ba27f3c8ed0e3e08ab7587827c5" => :catalina
|
|
sha256 "721b77647c6e6fbad6603e171d9fde6511591bdfb20ddd10d221e90bfb21d90a" => :mojave
|
|
sha256 "4556f7e1e1fa95e817f07d19654f1182f4c7d1dfb288b82e2c06e574e55e1c2c" => :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
|