Apple's answer is that I should download or obtain the "Developer Tools" CD and install its contents.

You should have a copy of the Developer CD with your copy of Mac OS X. You do have a legal copy of Mac OS X don't you :-)

What exactly is "make" and could I just install it by itself?

It's the build system usually used for C/C++ code. It's used to make sure stuff is compiled in the right order, linked, installed, etc.

You can install it by itself. To do that you'll need a C compiler. Guess what else is on the Developer CD :-)

What kind of weird-ass system pre-installs Perl and CPAN but not "make"?

Not all people who use Perl need CPAN. Perl is used within Mac OS X itself in various places so that's one of the reasons it comes installed by default.

All the developer tools (make, gcc, etc.) take up a fair amount of space. For the vast majority of Mac OS X users who are not developers it's not needed.

Can I safely just copy HTML::Template the text file into the right "lib" directory and not "make" it at all?

HTML::Template is a pure perl module so that should work fine.

What about dependencies?

If you take a look at its Makefile.PL you'll see it depends on File::Spec and Carp which are both core in 5.8.1 so you shouldn't have any problems.

Is there a website somewhere which examines what's on that enormous Developer Tools CD and what can be skipped if you just want Perl, but not other kinds of development tool?

If you look at the Developer CD there are some options to only do a partial install. If you exclude the documentation and examples it should save you a large chunk of space.


In reply to Re: OT, sort of: "make" on OSX by adrianh
in thread OT, sort of: "make" on OSX by Cody Pendant

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.