Module Building 101
Installing a module

Installing a module

* Download
    wget http://search.cpan.org/~petdance/WWW-Mechanize-0.70/

* Unpack
    tar zxvf WWW-Mechanize-0.70.tar.gz

* Build & install
    cd WWW-Mechanize-0.70
    perl Makefile.PL
    make
    make test
    make install

The magical incantation

    perl Makefile.PL
    make
    make test
    make install

Module Building 101
Copyright (c) 2004 Andy Lester <andy@petdance.com>