class ShadowsocksLibev < Formula desc "Libev port of shadowsocks" homepage "https://github.com/shadowsocks/shadowsocks-libev" url "https://github.com/shadowsocks/shadowsocks-libev/releases/download/v3.0.6/shadowsocks-libev-3.0.6.tar.gz" sha256 "7d9b43b0235a57c115bfe160efd54abef96bffcbfff61c5496e7c2800f0734ca" bottle do cellar :any sha256 "3ea7264ce2f6f22855d7207cabf0fca81d2c946c15efc1a6b5cefe56c1882d75" => :sierra sha256 "8a5632988a46a1b795a7e22a90d1e98cf140636285f42ecb3aa98f96f1aaaa86" => :el_capitan sha256 "7db119e2acd4a7857462cfdf3bf2e312a88a545f92ebd95648d6a67d26193208" => :yosemite end depends_on "asciidoc" => :build depends_on "xmlto" => :build depends_on "libev" depends_on "libsodium" depends_on "mbedtls" depends_on "pcre" depends_on "udns" 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":null } 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