class Tor < Formula homepage "https://www.torproject.org/" url "https://dist.torproject.org/tor-0.2.5.10.tar.gz" mirror "https://tor.eff.org/dist/tor-0.2.5.10.tar.gz" sha256 "b3dd02a5dcd2ffe14d9a37956f92779d4427edf7905c0bba9b1e3901b9c5a83b" revision 1 bottle do sha1 "e96c15e3030c7ca9ad7804bde4024c71f9362f82" => :yosemite sha1 "12dce18abe3abec95c8c5f77e8aa89fbb5168ed8" => :mavericks sha1 "f1035e68a814e48dd3bca01176ca8b504f31188d" => :mountain_lion end devel do url "https://dist.torproject.org/tor-0.2.6.2-alpha.tar.gz" mirror "https://tor.eff.org/dist/tor-0.2.6.2-alpha.tar.gz" sha256 "b0e765736b17b91088a2016e7f09e4fafee81282f8bc8647987f975b6a583379" version "0.2.6.2-alpha" # Move this to the main block when devel = stable release. depends_on "libscrypt" => :optional end depends_on "libevent" depends_on "openssl" depends_on "libnatpmp" => :optional depends_on "miniupnpc" => :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" system "./configure", *args system "make", "install" end test do system bin/"tor", "--version" end def plist; <<-EOS.undent Label #{plist_name} RunAtLoad KeepAlive ProgramArguments #{opt_bin}/tor WorkingDirectory #{HOMEBREW_PREFIX} EOS 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 end