b6d4e2cfc4
Bumps the homepage to the correct https link, changes the sha1 to sha256 to match Tarsnap preferred checksum styling, and added the openssl dependency for the same reasons referenced in [31978](https://github.com/Homebrew/homebrew/pull/31978). Also: bumps the download link to https as well.
14 lines
345 B
Ruby
14 lines
345 B
Ruby
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'
|
|
|
|
depends_on 'openssl'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|