aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/scrypt.rb
blob: 2cb776c6659725ff791ebba9937d7506e2af9acb (plain)
1
2
3
4
5
6
7
8
9
10
11
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