homebrew-core/Formula/scrypt.rb
Aku Kotkavuo 12e8bf7113 New formula: scrypt
A better alternative for bcrypt.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-06 19:14:36 -08:00

12 lines
283 B
Ruby

require 'formula'
class Scrypt <Formula
url 'http://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz'
homepage 'http://www.tarsnap.com/scrypt.html'
md5 'a35523cd497f7283635ce881db39c2e2'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end