blob: 24b92bacb2cabcc5914d34766f773154f382e0b1 (
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/'
sha1 '6fc0815a3e7766958365df4495247049d1bf968c'
depends_on 'gmp'
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end
|