Just to ensure we're on the same page with this, distributing pre-compiled binaries probably isn't a viable solution. Instead, I'm suggesting you distribute the versions of the module source that you've tested your tool with, e.g. DBI-1.631.tar.gz and DBD-Oracle-1.70.tar.gz (the latest versions at the time of writing). In this way, you retain control over the versions of these modules.

Then the client can install these as needed. You can retain further control over how the installation is performed by supplying an installation script. The guts of this script would probably be along these lines (which is just off the top of my head):

tar zxvf Module-version.tar.gz > Module-version.INSTALL 2>&1 cd Module-version perl Makefile.PL make make test make install

This way, you control what is installed and how. You don't need to become physically involved with the installations yourself, e.g. getting access to machines, waiting for compilations & tests to complete, and so on. The extent of that involvement, if you did it youself, would depend on your relationship with your client (which you haven't told us about): on-site or remote access; level of privileges, etc.

The client does the work but, as that only involves running a script you've provided, would probably make them more inclined to do so. It may even appear that you've done additional work for them which would likely be received positively. Again, all this will depend on your relationship with your client, so I'm guessing somewhat here.

-- Ken


In reply to Re^3: [perl|DBI] packaging tool with DBI and DBD::Oracle by kcott
in thread [perl|DBI] packaging tool with DBI and DBD::Oracle by charithd

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.