186a94630c
Closes Homebrew/homebrew#45251. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
86 lines
2.9 KiB
Ruby
86 lines
2.9 KiB
Ruby
class Tor < Formula
|
|
desc "Anonymizing overlay network for TCP"
|
|
homepage "https://www.torproject.org/"
|
|
url "https://dist.torproject.org/tor-0.2.6.10.tar.gz"
|
|
mirror "https://tor.eff.org/dist/tor-0.2.6.10.tar.gz"
|
|
sha256 "0542c0efe43b86619337862fa7eb02c7a74cb23a79d587090628a5f0f1224b8d"
|
|
|
|
bottle do
|
|
sha256 "10215ccde70597d6bb8efdad496de4b76991aae838a66ffcbb0f1ca033da786c" => :el_capitan
|
|
sha256 "acf689a5cf4ac59116b04cc271d999aea16d6dac44d8dce3b873a9ac0f854433" => :yosemite
|
|
sha256 "b6e02ebdbc250b0beb199e55135d9514e88b3c195f442931ef8528bb9de8680c" => :mavericks
|
|
sha256 "6e4085a67f555cb0b34b74818fb4f43dcc353d653100633aefa85804148f5d5e" => :mountain_lion
|
|
end
|
|
|
|
devel do
|
|
url "https://dist.torproject.org/tor-0.2.7.4-rc.tar.gz"
|
|
mirror "https://tor.eff.org/dist/tor-0.2.7.4-rc.tar.gz"
|
|
sha256 "6741c3e6abfedb76be781b767b77f794ee1a0f554cc4ccf083e44d4d9dc8af67"
|
|
version "0.2.7.4-rc"
|
|
end
|
|
|
|
depends_on "libevent"
|
|
depends_on "openssl"
|
|
depends_on "libnatpmp" => :optional
|
|
depends_on "miniupnpc" => :optional
|
|
depends_on "libscrypt" => :optional
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--sysconfdir=#{etc}
|
|
--with-openssl-dir=#{Formula["openssl"].opt_prefix}
|
|
]
|
|
|
|
args << "--with-libnatpmp-dir=#{Formula["libnatpmp"].opt_prefix}" if build.with? "libnatpmp"
|
|
args << "--with-libminiupnpc-dir=#{Formula["miniupnpc"].opt_prefix}" if build.with? "miniupnpc"
|
|
args << "--disable-libscrypt" if build.without? "libscrypt"
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
You will find a sample `torrc` file in #{etc}/tor.
|
|
It is advisable to edit the sample `torrc` to suit
|
|
your own security needs:
|
|
https://www.torproject.org/docs/faq#torrc
|
|
After editing the `torrc` you need to restart tor.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
pipe_output("script -q /dev/null #{bin}/tor-gencert --create-identity-key", "passwd\npasswd\n")
|
|
assert (testpath/"authority_certificate").exist?
|
|
assert (testpath/"authority_signing_key").exist?
|
|
assert (testpath/"authority_identity_key").exist?
|
|
end
|
|
|
|
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>RunAtLoad</key>
|
|
<true/>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/tor</string>
|
|
</array>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/tor.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/tor.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
end
|