aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tor.rb
blob: bcf39aba8a21aa6304f6392a584607fe90454ed5 (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.26.tar.gz'
  homepage 'https://www.torproject.org/'
  md5 'f7b30a144e1da41aa43f496bd47ffba7'

  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