in reply to Add bash file to a dist package
Read the Module::Build::Cookbook for details.my $builder = Module::Build->new( ... sh_files => { 'path/in/dist/to/test.sh' => 'sh/test666.sh'}, install_path => { sh => '/etc/profile.d' }, ... } $builder->add_build_element('sh'); $builder->create_build_script();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Add bash file to a dist package
by earlati (Acolyte) on Aug 17, 2010 at 09:55 UTC | |
by lima1 (Curate) on Aug 17, 2010 at 14:45 UTC | |
by earlati (Acolyte) on Aug 17, 2010 at 22:09 UTC |