NAME

Dynamic::Loader - call a script without to know where is his location.

VERSION

Version 0.01

SYNOPSIS

The Dynamic::Loader manage the dynamic location of scripts and bundles. 
Scripts and bundles are packaged in there own directory.
The bundles and scripts locations are discribed on a named configuration file. 
The prefix configuration directory can be specified by the $JAVAPERL environnement. 
The default directory is $HOME/.perljava/conf, but you can specify a custom
prefix with the $JAVAPERL/conf variable.

A configuration is <name>.conf with this format:
    prefix=<absolute path>
    bin=<relative binary dir>
    lib=<relative library dir>

You can use two methods to call a script:
    perl -MDynamic::Loader='scriptname.pl --a=... --b=...'
    perl -S loader.pl scriptname.pl --a=... --b=...

DEFAULT SCRIPT AND PARAMS

When Dynamic::Loader is used, you can specify the script name and his options command:

% perl -MDynamic::Loader='scriptname.pl --a=A --b=B'

DEFAULT MODULE CONF PATH

Configuration directory is specified by the environment variable JAVAPERL or at HOME/.perljava/conf. The prefix location can also specified by the command line:

% perl -MDynamic::Loader='scriptname.pl --a=A --b=B',/dir/to/packages

EXPORT

AUTHOR

Olivier Evalet, <olivier.evalet at genebio.com>

BUGS

Please report any bugs or feature requests to bug-dynamic-loader at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dynamic-Loader. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Dynamic::Loader

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2008 Olivier Evalet, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.