If you are using ExtUtils::MakeMaker, you can prompt the user for an installation location (or just set it yourself). To actually install that stuff using the usual Makemaker sequence, you add some makefile rules.

Makemaker uses the My:: namespace to allow you to add extra stuff (or override things) that Makemaker will output. You just need to add the stuff to install your templates.

The targets in the makefile are double-colon targets, so you can add to their definition. From the postamble(), return the string you want Makemaker to add to the makefile.

{ package MY; sub postamble { return <<"HERE"; all :: template_all install :: template_install template_all :: ...dependencies... # ...commands to run to make templates template_install :: ...dependencies... # ...commands to install templates HERE } }

Makemaker has a lot more features like this, too. The best way to find out about them is to look at other people's Makefile.PL. The complicated modules should have interesting examples that you can re-use. Once you get the hang of it, you can do some pretty powerful things.

--
brian d foy <brian@stonehenge.com>
Subscribe to The Perl Review

In reply to Re: Including TT2 templates in module distributions by brian_d_foy
in thread Including TT2 templates in module distributions by matthewb

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.