aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2014-08-30 10:03:13 +0100
committerMike McQuaid2014-08-30 10:03:46 +0100
commitb6f01f456f15ba24006d5974fa32aa64b4a13f8c (patch)
tree549853de96e91039881df1d55319dd4617317406 /Library/Formula
parentd69f27d682ebef31158d8243e903e4a998a89693 (diff)
downloadhomebrew-b6f01f456f15ba24006d5974fa32aa64b4a13f8c.tar.bz2
script: double-quotes and cleanup.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/scrypt.rb12
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