Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

inc::module::install::dsl(3) [centos man page]

inc::Module::Install::DSL(3)				User Contributed Perl Documentation			      inc::Module::Install::DSL(3)

NAME
inc::Module::Install::DSL - Domain Specific Language for Module::Install SYNOPSIS
use inc::Module::Install::DSL 0.80; all_from lib/ADAMK/Repository.pm requires File::Spec 3.29 requires File::pushd 1.00 requires File::Find::Rule 0.30 requires File::Find::Rule::VCS 1.05 requires File::Flat 0 requires File::Remove 1.42 requires IPC::Run3 0.034 requires Object::Tiny 1.06 requires Params::Util 0.35 requires CPAN::Version 5.5 test_requires Test::More 0.86 test_requires Test::Script 1.03 install_script adamk requires_external_bin svn DESCRIPTION
One of the primary design goals of Module::Install is to simplify the creation of Makefile.PL scripts. Part of this involves the gradual reduction of any and all superfluous characters, with the ultimate goal of requiring no non-critical information in the file. Module::Install::DSL is a simple Domain Specific Language based on the already-lightweight Module::Install command syntax. The DSL takes one command on each line, and then wraps the command (and its parameters) with the normal quotes and semi-colons etc to turn it into Perl code. SUPPORT
Bugs should be reported via the CPAN bug tracker at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Module-Install> For other issues contact the author. AUTHORS
Adam Kennedy <adamk@cpan.org> COPYRIGHT
Copyright 2008 - 2012 Adam Kennedy. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.3 2012-03-01 inc::Module::Install::DSL(3)

Check Out this Related Man Page

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

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.14.2 2012-03-01 Module::Install::Deprecated(3pm)
Man Page