diff options
| author | Aku Kotkavuo | 2010-12-13 13:42:44 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-06 19:14:36 -0800 |
| commit | 2dcf9d43f7d749bac2f5a489dbdd6f6bd43c8a56 (patch) | |
| tree | ad2849096fdbb274c6b58f03a77aa67bc4f5d958 /Library/Formula/scrypt.rb | |
| parent | a8142f642bb54fba4485fe77cbce3cc610c55dda (diff) | |
| download | homebrew-2dcf9d43f7d749bac2f5a489dbdd6f6bd43c8a56.tar.bz2 | |
New formula: scrypt
A better alternative for bcrypt.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/scrypt.rb')
| -rw-r--r-- | Library/Formula/scrypt.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/scrypt.rb b/Library/Formula/scrypt.rb new file mode 100644 index 000000000..f779c236b --- /dev/null +++ b/Library/Formula/scrypt.rb @@ -0,0 +1,12 @@ +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 |
