class ShadowsocksLibev < Formula desc "Libev port of shadowsocks" homepage "https://github.com/shadowsocks/shadowsocks-libev" url "https://github.com/shadowsocks/shadowsocks-libev/archive/v2.5.3.tar.gz" sha256 "4abd07b10476039190a6a60e822370d16750cb046f0bcb4877501e7d042c39e5" head "https://github.com/shadowsocks/shadowsocks-libev.git" bottle do cellar :any sha256 "4e3e68c73259f6cd4bb5eb0642ca2bbbde5f331100c202e78d2320b76de9413e" => :sierra sha256 "ad88e3ca20e980a606457fa35d939acd76a98c89a5c0a397fe5a6d208dceaf02" => :el_capitan sha256 "ca0b4b3cdf11667b80d5400bb360f7b3dff8e55bc2b1e89ce646e93f917be800" => :yosemite end depends_on "asciidoc" => :build depends_on "xmlto" => :build depends_on "openssl" depends_on "pcre" def install ENV["XML_CATALOG_FILES"] = etc/"xml/catalog" system "./configure", "--prefix=#{prefix}" system "make" (buildpath/"shadowsocks-libev.json").write <<-EOS.undent { "server":"localhost", "server_port":8388, "local_port":1080, "password":"barfoo!", "timeout":600, "method":null } EOS etc.install "shadowsocks-libev.json" inreplace Dir["man/*"], "/etc/shadowsocks-libev/config.json", "#{etc}/shadowsocks-libev.json" system "make", "install" end plist_options :manual => "#{HOMEBREW_PREFIX}/opt/shadowsocks-libev/bin/ss-local -c #{HOMEBREW_PREFIX}/etc/shadowsocks-libev.json" def plist; <<-EOS.undent Label #{plist_name} ProgramArguments #{opt_bin}/ss-local -c #{etc}/shadowsocks-libev.json RunAtLoad KeepAlive EOS end test do (testpath/"shadowsocks-libev.json").write <<-EOS.undent { "server":"127.0.0.1", "server_port":9998, "local":"127.0.0.1", "local_port":9999, "password":"test", "timeout":600, "method":"table" } EOS server = fork { exec bin/"ss-server", "-c", testpath/"shadowsocks-libev.json" } client = fork { exec bin/"ss-local", "-c", testpath/"shadowsocks-libev.json" } sleep 3 begin system "curl", "--socks5", "127.0.0.1:9999", "github.com" ensure Process.kill 9, server Process.wait server Process.kill 9, client Process.wait client end end end