Skip to content

Instantly share code, notes, and snippets.

@JEEN
Created October 23, 2010 14:24
Show Gist options
  • Save JEEN/642267 to your computer and use it in GitHub Desktop.
Save JEEN/642267 to your computer and use it in GitHub Desktop.
wget Formula
require 'formula'
class Wget <Formula
homepage 'http://www.gnu.org/software/wget/'
url 'http://ftp.gnu.org/gnu/wget/wget-1.12.tar.bz2'
md5 '308a5476fc096a8a525d07279a6f6aa3'
depends_on "libidn" if ARGV.include? "--enable-iri"
def options
[["--enable-iri", "Enable iri support."]]
end
def install
args = ["--disable-debug", "--prefix=#{prefix}"]
args << "--disable-iri" unless ARGV.include? "--enable-iri"
system "./configure", *args
system "make install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment