diff options
| author | Mike McQuaid | 2014-08-30 10:03:13 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-08-30 10:03:46 +0100 |
| commit | b6f01f456f15ba24006d5974fa32aa64b4a13f8c (patch) | |
| tree | 549853de96e91039881df1d55319dd4617317406 /Library/Formula | |
| parent | d69f27d682ebef31158d8243e903e4a998a89693 (diff) | |
| download | homebrew-b6f01f456f15ba24006d5974fa32aa64b4a13f8c.tar.bz2 | |
script: double-quotes and cleanup.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/scrypt.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/scrypt.rb b/Library/Formula/scrypt.rb index a48df075d..d8bcb1be8 100644 --- a/Library/Formula/scrypt.rb +++ b/Library/Formula/scrypt.rb @@ -1,9 +1,9 @@ -require 'formula' +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' + homepage "https://www.tarsnap.com/scrypt.html" + url "https://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz" + sha256 "dfd0d1a544439265bbb9b58043ad3c8ce50a3987b44a61b1d39fd7a3ed5b7fb8" bottle do cellar :any @@ -12,10 +12,10 @@ class Scrypt < Formula sha1 "55a0f5c9af71e15f801c1a94252150a356e73b20" => :lion end - depends_on 'openssl' + depends_on "openssl" def install system "./configure", "--prefix=#{prefix}" - system "make install" + system "make", "install" end end |
