aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pbc.rb
blob: 9aeec68630ef23427ff78099ee1f582b8988fe90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Pbc < Formula
  url 'http://crypto.stanford.edu/pbc/files/pbc-0.5.11.tar.gz'
  homepage 'http://crypto.stanford.edu/pbc/'
  md5 '93101db31c41dffcce9f4b87edbd8d96'

  depends_on 'gmp'

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