diff options
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 |
