Re: [Module::Build] Getting started help
Status: Beta
Brought to you by:
kwilliams
|
From: Steffen S. <sch...@we...> - 2006-06-21 07:08:48
|
"Lindiakos, Fotios" <fli...@mi...> writes:
> First, is there a way for me to put something like hc.conf into /etc
> (assuming I have permission to write there. Where would I have to
> put the file in the package (under lib, or can I have an etc folder
> or something too)?
I would create a subdir 'etc', put hc.conf into that directory and add
the following config to Build.PL:
my $build = Module::Build->new (
#
# ... all stuff you already have
#
etc_files => { 'etc/hc.conf' => 'etc/hc.conf' },
install_path => { 'etc' => '/etc' }
);
$build->add_build_element('etc');
$build->create_build_script;
$build->create_makefile_pl;
But I don't know how to make that absolute path '/etc' to work with a
given '--prefix=/somewhere' option. Maybe there's a better way.
> Second, how can I have CPAN automatically build missing dependencies,
> or query for them or something.
That should already work automatically because you specified them with
'requires => {...}'. The CPAN shell will install missing prerequisites
if you configured it to "follow automatically" or "ask".
> On that note (not M::B specific), is there a way that I can test
> using CPAN to install my modules?
I always do manually what the CPAN shell does, e.g. this way:
# from your project dir
./Build dist
cp My-Dist-0.1.tar.gz /tmp/
# now everything in /tmp dir
cd /tmp
tar xzf My-Dist-0.1.tar.gz
cd My-Dist-0.1
perl Build.PL
./Build
./Build test
./Build fakeinstall # or install
GreetinX
Steffen
--
Steffen Schwigon <sch...@we...>
Dresden Perl Mongers <http://dresden-pm.org/>
|