aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-06-23 22:58:49 -0700
committerAdam Vandenberg2014-06-23 22:58:49 -0700
commit8cf9b5888b02fe4f40232620d03d8bbfcc0f67da (patch)
treeb7b4ebde6c7fbec276d3b2c50e6800009f3aef09 /Library/Formula
parenteea57b8347a8d38ad7116bb90b90b0eff1191af2 (diff)
downloadhomebrew-8cf9b5888b02fe4f40232620d03d8bbfcc0f67da.tar.bz2
surfraw: style
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/surfraw.rb15
1 files changed, 7 insertions, 8 deletions
diff --git a/Library/Formula/surfraw.rb b/Library/Formula/surfraw.rb
index 51f272fbc..866e3e8da 100644
--- a/Library/Formula/surfraw.rb
+++ b/Library/Formula/surfraw.rb
@@ -1,11 +1,10 @@
-require 'formula'
+require "formula"
class Surfraw < Formula
- homepage 'http://surfraw.alioth.debian.org/'
- url 'http://surfraw.alioth.debian.org/dist/surfraw-2.2.9.tar.gz'
- sha1 '70bbba44ffc3b1bf7c7c4e0e9f0bdd656698a1c0'
-
- head 'git://git.debian.org/surfraw/surfraw.git'
+ homepage "http://surfraw.alioth.debian.org/"
+ head "git://git.debian.org/surfraw/surfraw.git"
+ url "http://surfraw.alioth.debian.org/dist/surfraw-2.2.9.tar.gz"
+ sha1 "70bbba44ffc3b1bf7c7c4e0e9f0bdd656698a1c0"
def install
system "./prebuild" if build.head?
@@ -13,7 +12,7 @@ class Surfraw < Formula
"--sysconfdir=#{etc}",
"--with-graphical-browser=open"
system "make"
- ENV.j1 # Install using 1 job, or fails on Mac Pro
- system "make install"
+ ENV.j1
+ system "make", "install"
end
end