aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wget.rb
diff options
context:
space:
mode:
authorMax Howell2009-09-24 18:49:32 +0100
committerMax Howell2009-09-24 18:49:32 +0100
commit8d405a04bf5c1bd90149e3ef8843f77d34a9de30 (patch)
tree87ebb1a1ad9a81f31ec1678617bd9cc6ea00d310 /Library/Formula/wget.rb
parent51dcb8c9e754223cc7fd1c605b160f23b996fe81 (diff)
downloadhomebrew-8d405a04bf5c1bd90149e3ef8843f77d34a9de30.tar.bz2
Use new instance var syntax in example formula
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