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.29.0", :revision => "e62d9a52429f54dee8df1c42f2d4bad7a267b05d" bottle do cellar :any_skip_relocation sha256 "7223885b2a59fb67912e1d9be99736f8f76e688b037cb369c62792b2f93ede11" => :catalina sha256 "f20df559b1be64da2e48c45a5612cc2fb73d4699d2f08703359044f101c45572" => :mojave sha256 "e90b696ef5c526721c484162af24ca46820dc35f1998feed8df57fb1d4b0b432" => :high_sierra sha256 "34fb7c4987d7a45895a56b87ca65d65846b5810c88250a0f2d23a7b67f24443e" => :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