h2xs -A -X -n MyModule #### perl Makefile.PL make make test make tardist #### tar xvfz modulename.tar.gz cd modulename perl Makefile.PL PREFIX=/path/to/own/modules make make test make install #### use lib qw(/path/to/own/modules) use MyModule;
## perl Makefile.PL make make test make tardist ##
## tar xvfz modulename.tar.gz cd modulename perl Makefile.PL PREFIX=/path/to/own/modules make make test make install ##
## use lib qw(/path/to/own/modules) use MyModule;