2009-06-04 18:21:19 +00:00
|
|
|
require 'brewkit'
|
|
|
|
|
|
|
|
class Wget <Formula
|
2009-09-24 17:49:32 +00:00
|
|
|
homepage 'http://www.gnu.org/software/wget/'
|
|
|
|
url 'http://ftp.gnu.org/gnu/wget/wget-1.11.4.tar.bz2'
|
|
|
|
md5 'f5076a8c2ec2b7f334cb6e3059820f9c'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
|
|
|
def install
|
2009-09-25 00:14:42 +00:00
|
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
2009-06-04 18:21:19 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2009-09-24 17:49:32 +00:00
|
|
|
end
|