aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tor.rb
blob: e6bc0e4db398dfff25948d23978c74054d9b0d31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Tor <Formula
  url 'https://www.torproject.org/dist/tor-0.2.1.27.tar.gz'
  homepage 'https://www.torproject.org/'
  md5 '1719642b3f25a23c3b3843ee99be18fb'

  depends_on 'libevent'

  def patches
    {:p0 => 'https://gist.github.com/raw/344132/d27d1cd3042d7c58120688d79ed25a2fc959a2de/config.guess-x86_64patch.diff' }
  end

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end