in reply to Re^2: Where should one place support scripts and resources within a Catalyst project?
in thread [SOLVED] Where should one place support scripts and resources within a Catalyst project?

Is this, or something equivalent, possible?

Lets see http://search.cpan.org/grep?cpanid=ADAMK&release=Module-Install-1.01&string=post&i=1&n=1&C=0
preamble, postamble (Module::Install::Makefile) looks like a candidate
Checking ?node_id=3989;HIT=Module%3A%3AInstall;re=N
Adding additional targets to Module::Install
custom behavior with Module::Install/MakeMaker during standard CPAN install sequence

yup, postamble seems promising

  • Comment on Re^3: Where should one place support scripts and resources within a Catalyst project?

Replies are listed 'Best First'.
Re^4: [SOLVED] Where should one place support scripts and resources within a Catalyst project?
by JNW (Novice) on Aug 25, 2011 at 09:00 UTC

    Brilliant! Thank you so much. That's led me to the answer that I was looking for:

    postamble <<EOPOST; install :: run_myapp_database run_myapp_database: myapp_database.pl EOPOST

    (Where the space before myapp_database.pl is a tab character)

    Thank you so much for your time!