diff options
| author | Max Howell | 2009-05-21 00:04:43 +0100 |
|---|---|---|
| committer | Max Howell | 2009-05-21 00:04:43 +0100 |
| commit | 84c5c3e5c301382ede5b1f04c7440ee9055589af (patch) | |
| tree | fe8248a0b54da1dbb92693f9dca7db0c6bb56ed9 /Formula/wget.rb | |
| parent | 29d85578e75170a6c0eaebda4d701b46f1acf446 (diff) | |
| download | brew-0.1.tar.bz2 | |
The core tree, and some formulae0.1
Diffstat (limited to 'Formula/wget.rb')
| -rw-r--r-- | Formula/wget.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Formula/wget.rb b/Formula/wget.rb new file mode 100644 index 000000000..1c6ee8517 --- /dev/null +++ b/Formula/wget.rb @@ -0,0 +1,12 @@ +$:.unshift "#{File.dirname __FILE__}/../Cellar/homebrew" #rubysucks +require 'brewkit' + +homepage='http://www.gnu.org/software/wget/' +url='http://ftp.gnu.org/gnu/wget/wget-1.11.4.tar.bz2' +md5='f5076a8c2ec2b7f334cb6e3059820f9c' + +Formula.new(url, md5).brew do |prefix| + `./configure --disable-debug --prefix="#{prefix}"` + `make` + `make install` +end
\ No newline at end of file |
