homebrew-core/Formula/shadowsocks-libev.rb

78 lines
2.2 KiB
Ruby

require "formula"
class ShadowsocksLibev < Formula
homepage "https://github.com/madeye/shadowsocks-libev"
url "https://github.com/madeye/shadowsocks-libev/archive/v1.4.8.tar.gz"
sha1 "8261d91dc7184d2edafb9f1f57f70f97fe7d0f2f"
bottle do
sha1 "8b47e5c7d2a1398e8bb6069f5c33bb6a2595574a" => :yosemite
sha1 "585d31bf4a6128d490ea51d0199949922056f9e8" => :mavericks
sha1 "d78ad3908a3708ddc92151538102cb44b2a05809" => :mountain_lion
end
head "https://github.com/madeye/shadowsocks-libev.git"
option "with-polarssl", "Use PolarSSL instead of OpenSSL"
depends_on "libev"
depends_on "polarssl" => :optional
depends_on "openssl" if build.without? "polarssl"
def install
args = ["--prefix=#{prefix}"]
if build.with? "polarssl"
polarssl = Formula["polarssl"]
args << "--with-crypto-library=polarssl"
args << "--with-polarssl=#{polarssl.opt_prefix}"
end
system "./configure", *args
system "make", "install"
(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 "shadowsocks.8", "/etc/shadowsocks/config.json", "#{etc}/shadowsocks-libev.json"
man8.install "shadowsocks.8"
end
plist_options :manual => "#{HOMEBREW_PREFIX}/opt/shadowsocks-libev/bin/ss-local -c #{HOMEBREW_PREFIX}/etc/shadowsocks-libev.json"
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/ss-local</string>
<string>-c</string>
<string>#{etc}/shadowsocks-libev.json</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
</dict>
</plist>
EOS
end
end