aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wget.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/wget.rb')
-rw-r--r--Library/Formula/wget.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/wget.rb b/Library/Formula/wget.rb
index 99288b295..c20ba9a32 100644
--- a/Library/Formula/wget.rb
+++ b/Library/Formula/wget.rb
@@ -1,12 +1,12 @@
require 'brewkit'
class Wget <Formula
- @homepage='http://www.gnu.org/software/wget/'
- @url='http://ftp.gnu.org/gnu/wget/wget-1.11.4.tar.bz2'
- @md5='f5076a8c2ec2b7f334cb6e3059820f9c'
+ homepage 'http://www.gnu.org/software/wget/'
+ url 'http://ftp.gnu.org/gnu/wget/wget-1.11.4.tar.bz2'
+ md5 'f5076a8c2ec2b7f334cb6e3059820f9c'
def install
- system "./configure --disable-debug --prefix='#{prefix}'"
+ system "./configure", "--disable-debug", "--prefix='#{prefix}'"
system "make install"
end
-end \ No newline at end of file
+end