Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: Add bash file to a dist package

by earlati (Acolyte)
on Aug 17, 2010 at 09:55 UTC ( [id://855455]=note: print w/replies, xml ) Need Help??


in reply to Re: Add bash file to a dist package
in thread Add bash file to a dist package

Thanks, I follow your hints and it seems to work.

Just one think is not clear to me again.

I used a Build.PL file like this:

use strict; use warnings; use Module::Build; my $builder = Module::Build->new( module_name => 'Jump', license => 'perl', dist_author => q{Enzo Arlati <enzo.arlati@libero.it>}, dist_version_from => 'lib/Jump.pm', build_requires => { 'Test::More' => 0, }, sh_files => { 'sh/jump.sh' => 'sh/jump.sh' }, add_to_cleanup => [ 'Jump-*' ], create_makefile_pl => 'traditional', ); $builder->install_path( 'sh' => '/etc/profile.d/' ); $builder->add_build_element( 'sh' ); $builder->create_build_script();
In this file I have to add the statement:
sh_files => { 'sh/jump.sh' => 'sh/jump.sh' },
also if the source and destination of the sh files are the same.

If I comment this line the jump.sh file are not processed.

Is this correct and there are a more polite way to tell the program to include the file *.sh ?

Regards, Enzo

Replies are listed 'Best First'.
Re^3: Add bash file to a dist package
by lima1 (Curate) on Aug 17, 2010 at 14:45 UTC
    According Module::Build::Cookbook, if you specify
    $builder->add_build_element( 'sh' );
    this will find all *.sh files in the lib directory of your distribution. In your case, the bash script is in a non-standard directory, so you have to tell Module::Build where it is:
    sh_files => { 'sh/jump.sh' => 'sh/jump.sh' },
    And here the files are not the same. The destination is 'blib/sh/jump.sh'.
      tanks

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://855455]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2024-04-19 10:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found