class Frps < Formula desc "Server app of fast reverse proxy to expose a local server to the internet" homepage "https://github.com/fatedier/frp" url "https://github.com/fatedier/frp.git", :tag => "v0.30.0", :revision => "75f3bce04dad71213fbf63da2dd6000a22e2c431" bottle do cellar :any_skip_relocation sha256 "0883afc7ad7b88105eeb19ac9c68bcf468b36f082d76a0aceadfe2e6525b75d7" => :catalina sha256 "e33d69b21a55f88ace27427b31dd2eb46bd83e756877f4b533f1c5654a017922" => :mojave sha256 "c9d1cd7b0c53d9d3cbda099822a99a8758e853ec2f5a9fac828b65c1aa821170" => :high_sierra end depends_on "go" => :build def install ENV["GOPATH"] = buildpath contents = Dir["{*,.git,.gitignore}"] (buildpath/"src/github.com/fatedier/frp").install contents (buildpath/"bin").mkpath (etc/"frp").mkpath cd "src/github.com/fatedier/frp" do system "make", "frps" bin.install "bin/frps" etc.install "conf/frps.ini" => "frp/frps.ini" etc.install "conf/frps_full.ini" => "frp/frps_full.ini" prefix.install_metafiles end end plist_options :manual => "frps -c #{HOMEBREW_PREFIX}/etc/frp/frps.ini" def plist; <<~EOS Label #{plist_name} KeepAlive ProgramArguments #{opt_bin}/frps -c #{etc}/frp/frps.ini StandardErrorPath #{var}/log/frps.log StandardOutPath #{var}/log/frps.log EOS end test do system bin/"frps", "-v" assert_match "Flags", shell_output("#{bin}/frps --help") begin read, write = IO.pipe pid = fork do exec bin/"frps", :out => write end sleep 3 output = read.gets assert_match "frps tcp listen on", output ensure Process.kill(9, pid) Process.wait(pid) end end end