File: INSTALL

package info (click to toggle)
libmodule-build-perl 0.421000-2%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 1,524 kB
  • ctags: 1,095
  • sloc: perl: 11,274; sh: 44; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 605 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
         Installation instructions for Module::Build

To install this module, just do:

  perl Build.PL
  ./Build
  ./Build test
  ./Build install  (this step may need to be done as the superuser)

Or, if you're on a platform (like DOS or Windows) that doesn't require
the "./" notation, you can do this:

  perl Build.PL
  Build
  Build test
  Build install

The important thing is that the "Build" script gets executed and that
you pass it the "test", "install", etc. arguments.

There's heaps more information in the README and in the documentation
of the various packages in this distribution.

 -Ken