homebrew-core/Formula/pbc.rb
Brian Buchanan 500e997f2a pbc 0.5.13
Closes Homebrew/homebrew#19241.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-04-16 16:20:12 -05:00

15 lines
400 B
Ruby

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