homebrew-core/Formula/pbc.rb
Jan de Muijnck-Hughes 366b7fa14a PBC 0.5.12
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-08-24 14:22:21 -07:00

14 lines
339 B
Ruby

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