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

  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