NAME
cpan-static - a small command line tool for static installation.
VERSION
version 0.002
SYNOPSIS
$ cpan-static configure --install_base ~/my_app $ cpan-static build $ cpan-static test $ cpan-static install
DESCRIPTION
This is a small tool to facilitate static installation of CPAN modules.
All subcommands take the same arguments as a Build.PL would, but it's recommended to only pass them to configure.
configure
This will configure the distribution. This should be run first.
build
This will build all files in the staging directory. One must first call configure
before calling this. Note that you should have any build, test and runtime dependencies installed before this action.
test
This will run the test for the distribution. One must first call build
before calling this.
install
This will install the distribution. One must first call build
before calling this, one may also call test
before running this.
AUTHOR
Leon Timmermans <leont@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Leon Timmermans.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.