aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAku Kotkavuo2010-12-13 13:42:44 +0200
committerAdam Vandenberg2011-03-06 19:14:36 -0800
commit2dcf9d43f7d749bac2f5a489dbdd6f6bd43c8a56 (patch)
treead2849096fdbb274c6b58f03a77aa67bc4f5d958 /Library
parenta8142f642bb54fba4485fe77cbce3cc610c55dda (diff)
downloadhomebrew-2dcf9d43f7d749bac2f5a489dbdd6f6bd43c8a56.tar.bz2
New formula: scrypt
A better alternative for bcrypt. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/scrypt.rb12
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