diff options
Diffstat (limited to 'Library/Formula/wget.rb')
| -rw-r--r-- | Library/Formula/wget.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/wget.rb b/Library/Formula/wget.rb new file mode 100644 index 000000000..2ba5722e0 --- /dev/null +++ b/Library/Formula/wget.rb @@ -0,0 +1,13 @@ +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" + system "make install" + end +end
\ No newline at end of file |
