The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

App::Gnuget - Main module for gnuget tool

VERSION

version 1.935

SYNOPSIS

    # Create object
    my $getter = new App::Gnuget;

    # Setup informations
    my ($software, $version) = ('make', '3.82');

    # Give informations to the object
    $getter->populate($software, $version);

    # Build Ftp connexion
    $getter->buildFtpCnx();

    # Download the archive
    $getter->download();

    # Unpack the archive
    $getter->uncompress();

    # Clean env
    $getter->clean()

DESCRIPTION

This module is the main module for gnuget software. It implements all functions needed by it, see the example above, which is basically the gnuget operation.

AUTHOR

Sandro CAZZANIGA <cazzaniga.sandro@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Sandro CAZZANIGA.

This is free software; you can redistribute it and/or modify it under the terms of GNU GPL version 3.