blob: f7cffbded07bc4b2fa8b9d3564ef4f4bd436f151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
require 'formula'
class Pbc < Formula
  homepage 'http://crypto.stanford.edu/pbc/'
  url 'http://crypto.stanford.edu/pbc/files/pbc-0.5.13.tar.gz'
  sha256 '6207b7aea96e61df991c59a27ff9a954922954bc4b3cb9db325a37806b41dc89'
  depends_on 'gmp'
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |