dc7c32a892
Announcements: * https://lists.torproject.org/pipermail/tor-talk/2013-December/031392.html * https://blog.torproject.org/blog/tor-weekly-news-%E2%80%94-december-18th-2013 * https://lists.torproject.org/pipermail/tor-talk/2013-October/030269.html Closes Homebrew/homebrew#25310. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
52 lines
1.4 KiB
Ruby
52 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class Tor < Formula
|
|
homepage 'https://www.torproject.org/'
|
|
url 'https://www.torproject.org/dist/tor-0.2.4.19.tar.gz'
|
|
sha1 'f0050921016d63c426f0c61dbaa8ced50a36474b'
|
|
|
|
devel do
|
|
url 'https://www.torproject.org/dist/tor-0.2.5.1-alpha.tar.gz'
|
|
version '0.2.5.1-alpha'
|
|
sha1 'd10cb78e6a41657d970a1ce42105142bcfc315fb'
|
|
end
|
|
|
|
option "with-brewed-openssl", "Build with Homebrew's OpenSSL instead of the system version"
|
|
|
|
depends_on 'libevent'
|
|
depends_on 'openssl' if build.with? 'brewed-openssl'
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
]
|
|
|
|
args << "-with-ssl=#{Formulary.factory('openssl').opt_prefix}" if build.with? 'brewed-openssl'
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
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_prefix}/bin/tor</string>
|
|
</array>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
end
|