aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2014-08-24 17:08:38 +0100
committerMike McQuaid2014-08-24 17:14:21 +0100
commit1f65d13533fda4cb255db7bacb87e88b505224ad (patch)
treeea9cec97d764cacd6bf6d2f9a7ba1c14309a8c34 /Library/Formula
parentcf9cc31e4c90d3c59923a735e6eda262ffe4c700 (diff)
downloadhomebrew-1f65d13533fda4cb255db7bacb87e88b505224ad.tar.bz2
lynx: use double-quotes and "make", "install".
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/lynx.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/lynx.rb b/Library/Formula/lynx.rb
index f0d791454..5b1b42e04 100644
--- a/Library/Formula/lynx.rb
+++ b/Library/Formula/lynx.rb
@@ -1,10 +1,10 @@
-require 'formula'
+require "formula"
class Lynx < Formula
- homepage 'http://lynx.isc.org/release/'
- url 'http://lynx.isc.org/current/lynx2.8.8rel.2.tar.bz2'
- version '2.8.8rel.2'
- sha1 '65bbf95627c88723bbb5880155e5fe01c2753d0c'
+ homepage "http://lynx.isc.org/release/"
+ url "http://lynx.isc.org/current/lynx2.8.8rel.2.tar.bz2"
+ version "2.8.8rel.2"
+ sha1 "65bbf95627c88723bbb5880155e5fe01c2753d0c"
revision 1
bottle do
@@ -25,10 +25,10 @@ class Lynx < Formula
"--with-bzlib",
"--with-ssl=#{Formula["openssl"].opt_prefix}",
"--enable-ipv6"
- system "make install"
+ system "make", "install"
end
test do
- system "#{bin}/lynx", '-dump', 'http://checkip.dyndns.org'
+ system "#{bin}/lynx", "-dump", "http://checkip.dyndns.org"
end
end