blob: 983f4b3892343549423280bf4b840ef73744e754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
require 'formula'
class Tor < Formula
homepage 'https://www.torproject.org/'
url 'https://www.torproject.org/dist/tor-0.2.4.20.tar.gz'
sha1 '09ba4eda9a73c46852a277b721ed74c8263e8dba'
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" if MacOS.version > :leopard
depends_on 'libevent'
depends_on 'openssl' if build.with?('brewed-openssl') || MacOS.version < :snow_leopard
def install
# Fix the path to the control cookie.
inreplace \
'contrib/tor-ctrl.sh',
'TOR_COOKIE="/var/lib/tor/data/control_auth_cookie"',
'TOR_COOKIE="$HOME/.tor/control_auth_cookie"'
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
]
args << "-with-ssl=#{Formulary.factory('openssl').opt_prefix}" if build.with?('brewed-openssl') || MacOS.version < :snow_leopard
system "./configure", *args
system "make install"
bin.install "contrib/tor-ctrl.sh" => "tor-ctrl"
end
test do
system "tor", "--version"
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
|