in reply to Re: PAR::Packer, trouble to include specific external libraries
in thread PAR::Packer, trouble to include specific external libraries

Thank you for your answer,

I used the --lib option which is an option that I believe alows me to add lib files to my package as specified on the doc :

-I, --lib=DIR Add the given directory to the perl library file search path. May be specified multiple times. (http://search.cpan.org/~rschupp/PAR-Packer-1.013/lib/pp.pm)

or do you mean that I have to include every single file with a -l option ?

Thanks for cavapackager, I've heard of it but it didn't really seamed like the perfect answer for me... I'll give it another try tomorrow

And yes basically CentOS is like RHEL, every packaged is compiled after the RedHat packages and it is supposed to be 100% compatible...

Regards

  • Comment on Re^2: PAR::Packer, trouble to include specific external libraries

Replies are listed 'Best First'.
Re^3: PAR::Packer, trouble to include specific external libraries
by Anonymous Monk on Oct 01, 2012 at 16:17 UTC

    I used the --lib option ...

    That is why i said use the -l option, copy/paste and ctrl+f to read about the -l option

    $ perldoc pp |ack "\-l\b" -l, --link=*FILE*|*LIBRARY* packed file. Also accepts names under library paths; i.e. "-l ncurses" means the same thing as "-l libncurses.so" or "-l

      Hi,

      Ok thanks, i'll try that

      And it's working :)

      Thanks a lot Anonymous Monk ^^