|
NAMEGantry::Build - a Module::Build subclass for Gantry apps SYNOPSISSample Build.PL: use strict;
use Gantry::Build;
my $build = Gantry::Build->new(
build_web_directory => 'html',
install_web_directories => {
# XXX unix specific paths
'dev' => '/home/httpd/html/Contact',
'qual' => '/home/httpd/html/Contact',
'prod' => '/home/httpd/html/Contact',
},
create_makefile_pl => 'passthrough',
license => 'perl',
module_name => 'Contact',
requires => {
'perl' => '5',
'Gantry' => '3.0',
'HTML::Prototype' => '0',
},
create_makefile_pl => 'passthrough',
# XXX unix specific paths
script_files => [ glob('bin/*') ],
'recursive_test_files' => 1,
# XXX unix specific paths
install_path => { script => '/usr/local/bin' },
);
$build->create_build_script;
DESCRIPTIONUse this module instead of Module::Build (which it subclasses). Use any or all of the Module::Build constructor keys as needed. Include these keys to make the module sing:
METHODSExcept new, these methods are all internal or for use by Module::Build. They are documented to keep POD tests happy.
AUTHORPhil Crow <philcrow2000@yahoo.com> Tim Keefer <tkeefer@gmail.com> COPYRIGHT and LICENSECopyright (C) 2005-6 by Phil Crow This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.
|