view gub/specs/wget.py @ 6487:9bf9726dad38

schikkers-list: install updates.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Thu, 03 Feb 2011 23:57:59 +0100
parents 387483526bff
children
line wrap: on
line source

from gub import target
from gub import tools

class Wget (target.AutoBuild):
    source = 'http://ftp.gnu.org/pub/gnu/wget/wget-1.11.4.tar.gz'

class Wget__mingw (Wget):
    patches = ['wget-1.11.4-mingw.patch']
    
class Wget__tools (tools.AutoBuild, Wget):
    pass