2010-02-18 00:53:52 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Pbc < Formula
|
2010-02-18 00:53:52 +00:00
|
|
|
homepage 'http://crypto.stanford.edu/pbc/'
|
2013-04-16 15:39:53 +00:00
|
|
|
url 'http://crypto.stanford.edu/pbc/files/pbc-0.5.13.tar.gz'
|
|
|
|
sha256 '6207b7aea96e61df991c59a27ff9a954922954bc4b3cb9db325a37806b41dc89'
|
2010-02-18 00:53:52 +00:00
|
|
|
|
|
|
|
depends_on 'gmp'
|
|
|
|
|
|
|
|
def install
|
2013-01-29 05:02:06 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-02-18 00:53:52 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|