blob: d8bcb1be88ce4881fbcf12ddb6c8e948c791e492 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | require "formula"
class Scrypt < Formula
  homepage "https://www.tarsnap.com/scrypt.html"
  url "https://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz"
  sha256 "dfd0d1a544439265bbb9b58043ad3c8ce50a3987b44a61b1d39fd7a3ed5b7fb8"
  bottle do
    cellar :any
    sha1 "7886f689ff87097389b38de18ecbd6a6122de393" => :mavericks
    sha1 "ee18f05a2a5f03029eff09112210c9dd91a88be1" => :mountain_lion
    sha1 "55a0f5c9af71e15f801c1a94252150a356e73b20" => :lion
  end
  depends_on "openssl"
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make", "install"
  end
end
 |