Add the original source packages to maemo, source lenny
[dh-make-perl] / dev / i386 / libmodule-build-perl / libmodule-build-perl-0.2808.01 / INSTALL
1          Installation instructions for Module::Build
2
3 To install this module, just do:
4
5   perl Build.PL
6   ./Build
7   ./Build test
8   ./Build install  (this step may need to be done as the superuser)
9
10 Or, if you're on a platform (like DOS or Windows) that doesn't require
11 the "./" notation, you can do this:
12
13   perl Build.PL
14   Build
15   Build test
16   Build install
17
18 The important thing is that the "Build" script gets executed and that
19 you pass it the "test", "install", etc. arguments.
20
21 If you really want to, you can use a more traditional Makefile.PL:
22
23   perl Makefile.PL
24   make test
25   make install     (this step may need to be done as the superuser)
26
27 Substitute "nmake" or "gmake" for "make" if you use some other
28 make-alike on your platform - 'perl -V:make' can tell you what you
29 should use.
30
31 I recommend using the Build.PL option.  If you use the Makefile.PL
32 option, you'll actually be using the Build.PL option under the surface
33 anyway, with a pass-through Makefile.
34
35 There's heaps more information in the README and in the documentation
36 of the various packages in this distribution.
37
38  -Ken