homebrew-core/Formula/wget.rb
Max Howell fcfd480167 Don't use quotes with the comma separated version of system()
As you don't escape to that version.
2009-09-25 01:24:05 +01:00

12 lines
300 B
Ruby

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'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make install"
end
end