blob: 96f024f73cf7a29aaf3c00956f6f11da2fcc19ca (
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.12.tar.gz'
  homepage 'http://crypto.stanford.edu/pbc/'
  md5 '4f3f017b5709fcc46b58d1ebc6b30e3f'
  depends_on 'gmp'
  def install
    system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
    system "make install"
  end
end
  |