class Clipper < Formula desc "Share macOS clipboard with tmux and other local and remote apps" homepage "https://wincent.com/products/clipper" url "https://github.com/wincent/clipper/archive/0.4.2.tar.gz" sha256 "e707e5f9295dd793755007fdcadae63073b91e949f115d01b1a6cc6b4642cd6d" bottle do cellar :any_skip_relocation sha256 "9e717b8e050d6ad0d0ba59d57d4e22d38d4e6357fb549af25bb5646064a0f7bc" => :high_sierra sha256 "44d377b4219cc3d1077ae3d1b78c3fd161242f3aff440adcde904610c5ff89f2" => :sierra sha256 "2bc9dc475bb45718699290b6359424e68e316cb8ec40fb38fd2f68b5c8872f0b" => :el_capitan sha256 "314db80566c87edfead4c85aa203ff17ab427cc7aa1f45766fb0def3588a5c74" => :yosemite end depends_on "go" => :build def install ENV["GOPATH"] = buildpath system "go", "build", "clipper.go" bin.install "clipper" end plist_options :manual => "clipper" def plist; <<~EOS Label #{plist_name} RunAtLoad KeepAlive WorkingDirectory #{HOMEBREW_PREFIX} ProgramArguments #{opt_bin}/clipper EnvironmentVariables LANG en_US.UTF-8 EOS end test do TEST_DATA = "a simple string! to test clipper, with söme spéciål characters!! 🐎\n".freeze cmd = [opt_bin/"clipper", "-a", testpath/"clipper.sock", "-l", testpath/"clipper.log"].freeze ohai cmd.join " " require "open3" Open3.popen3({ "LANG" => "en_US.UTF-8" }, *cmd) do |_, _, _, clipper| sleep 0.5 # Give it a moment to launch and create its socket. begin sock = UNIXSocket.new testpath/"clipper.sock" assert_equal TEST_DATA.bytesize, sock.sendmsg(TEST_DATA) sock.close sleep 0.5 assert_equal TEST_DATA, `LANG=en_US.UTF-8 pbpaste` ensure Process.kill "TERM", clipper.pid end end end end