9e697e88c5
devel/p5-Module-Build-Tiny from 0.030 to 0.034. pkgsrc changes: - adjust dependencies Upstream changes: 0.034 2014-01-22 03:40:21CET+0100 Europe/Amsterdam Make install tests more platform independent 0.033 2014-01-21 03:27:32CET+0100 Europe/Amsterdam Require Getopt::Long 2.36 Add install tests 0.032 2014-01-20 20:07:13CET+0100 Europe/Amsterdam Fix env options and Build.PL options being ignored (regression in 0.031) 0.031 2014-01-20 16:24:58CET+0100 Europe/Amsterdam Process argument sources separately Use mod2fname appropriately
12 lines
838 B
Text
12 lines
838 B
Text
Many Perl distributions use a Build.PL file instead of a Makefile.PL file
|
|
to drive distribution configuration, build, test and installation.
|
|
Traditionally, Build.PL uses Module::Build as the underlying build system.
|
|
This module provides a simple, lightweight, drop-in replacement. Whereas
|
|
Module::Build has over 6,700 lines of code; this module has less than 120,
|
|
yet supports the features needed by most distributions. Supported * Pure
|
|
Perl distributions * Building XS or C * Recursive test files * MYMETA * Man
|
|
page generation * Generated code from PL files Not Supported * Dynamic
|
|
prerequisites * HTML documentation generation * Extending
|
|
Module::Build::Tiny * Module sharedirs Directory structure Your .pm and
|
|
.pod files must be in lib/. Any executables must be in script/. Test files
|
|
must be in t/. Dist sharedirs must be in share/.
|