Reputation: 11
I'm writing a CPAN module and using inc::Module::Install 1.00 in Makefile.PL. The project has an executable perl script that needs to be installed into the defined location for runnable scripts. Given the script is
bin/foo
What is the correct parameters to pass?
Thanks
Upvotes: 1
Views: 360
Reputation: 74272
You could use install_script
. In your Makefile.PL
add:
install_script 'bin/foo';
Upvotes: 4