Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

module::install::external(3) [centos man page]

Module::Install::External(3)				User Contributed Perl Documentation			      Module::Install::External(3)

NAME
Module::Install::External - Specify dependencies on external non-Perl things DESCRIPTION
"Module::Install::External" provides command that allow you to declaratively specify a dependency on a program or system that is not Perl. The commands it provides are similar to those in Module::Install::Can, except that they implement an explicit dependency, in addition to just working out if the particular thing is available. COMMANDS
requires_xs requires_xs; The "requires_xs" command explicitly specifies that a C compiler and the perl header files are required in order to build (at make-time) the distribution (specifically XS files). It does not take any params, and aborts the Makefile.PL execution in a way that an automated installation or testing system will interpret as a "NA" ("not applicable to this platform") result. This may be changed to an alternative abort result at a later time. Returns true as a convenience. requires_external_cc requires_external_cc; The "requires_external_cc" command explicitly specifies that a C compiler is required in order to build (at make-time) the distribution. It does not take any params, and aborts the Makefile.PL execution in a way that an automated installation or testing system will interpret as a "NA" ("not applicable to this platform") result. This may be be changed to an alternative abort result at a later time. Returns true as a convenience. requires_external_bin requires_external_bin 'cvs'; The "requires_external_bin" command takes the name of a system command or program, similar to the "can_run" command, except that "requires_external_bin" checks in a way that is a declarative explicit dependency. The takes a single param of the command/program name, and aborts the "Makefile.PL" execution in a way that an automated installation or testing system will interpret as a "NA" ("not applicable to this platform") result. Returns true as a convenience. TO DO
Work out how to save the external dependency metadata, in agreement with the larger Perl community. Implement the agreed external dependency metadata solution. AUTHORS
Adam Kennedy <adamk@cpan.org> SEE ALSO
Module::Install COPYRIGHT
Copyright 2006 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.16.3 2012-03-01 Module::Install::External(3)

Check Out this Related Man Page

Module::Install::Deprecated(3)				User Contributed Perl Documentation			    Module::Install::Deprecated(3)

NAME
Module::Install::Deprecated - Warnings and help for deprecated commands DESCRIPTION
One of the nicest features of Module::Install is that as it improves, there is no need to take into account user compatibility, because users do not need to install Module::Install itself. As a result, the Module::Install API changes at a faster rate than usual, and this results in deprecated commands. "Module::Install::Deprecated" provides implementations of the deprecated commands, so that when an author is upgrading their Module::Install and they are using a deprecated command they will be told that the command has been deprecated, and what the author should use instead. This extension should NEVER end up bundled into the distribution tarball. COMMANDS
c_files The "c_files" command has been changed to "cc_files" to reduce confusion and keep all compiler commands within a consistent "ff_foo" naming scheme. inc_paths The "inc_paths" command has been changed to "cc_inc_paths" due to confusion between Perl and C. lib_paths The "lib_paths" command has been changed to "cc_lib_paths" due to confusion between Perl and C. lib_links The "lib_links" command has been changed to "cc_lib_links" due to confusion between Perl and C. optimize_flags The "optimize_flags" command has been changed to "cc_optimize_flags" for consistency reasons. AUTHORS
Adam Kennedy <adamk@cpan.org> SEE ALSO
Module::Install COPYRIGHT
Copyright 2006 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.16.3 2012-03-01 Module::Install::Deprecated(3)
Man Page