diff options
| author | Mike McQuaid | 2014-08-30 10:05:01 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-08-30 10:05:01 +0100 |
| commit | 9c4f0973b5b595b25d1593f33011154907af49b7 (patch) | |
| tree | 14f325301e5f387120fadef8ae30220424e867b0 /Library/Formula | |
| parent | 6286d13cf00762084b0b67bf9aeca1918a31e1b6 (diff) | |
| download | homebrew-9c4f0973b5b595b25d1593f33011154907af49b7.tar.bz2 | |
spiped: use double-quotes.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/spiped.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/spiped.rb b/Library/Formula/spiped.rb index efcd49978..3ecda9e42 100644 --- a/Library/Formula/spiped.rb +++ b/Library/Formula/spiped.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula" class Spiped < Formula - homepage 'https://www.tarsnap.com/spiped.html' - url 'https://www.tarsnap.com/spiped/spiped-1.3.1.tgz' - sha256 '8a58a983be460b88ed5a105201a0f0afacb83382208761837a62871dcca42fee' + homepage "https://www.tarsnap.com/spiped.html" + url "https://www.tarsnap.com/spiped/spiped-1.3.1.tgz" + sha256 "8a58a983be460b88ed5a105201a0f0afacb83382208761837a62871dcca42fee" bottle do cellar :any @@ -13,12 +13,12 @@ class Spiped < Formula end depends_on :bsdmake - depends_on 'openssl' + depends_on "openssl" def install man1.mkpath system "bsdmake", "BINDIR_DEFAULT=#{bin}", "MAN1DIR=#{man1}", "install" - doc.install 'spiped/README' => 'README.spiped', - 'spipe/README' => 'README.spipe' + doc.install "spiped/README" => "README.spiped", + "spipe/README" => "README.spipe" end end |
