Module::Build: Difference between revisions
From CBLFS
Jump to navigationJump to search
Chipster19 (talk | contribs) No edit summary |
Weibullguy (talk | contribs) No edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 12: | Line 12: | ||
=== Required === | === Required === | ||
* [[ | * [[Test::Harness]] | ||
* [[Module::Signature]] | |||
* [[Pod::Readme]] | |||
=== Optional === | === Optional === | ||
* [[ | * [[ExtUtils::ParseXS]] | ||
* [[ | * [[version]] | ||
* [[ | * [[Archive::Tar]] | ||
== Non-Multilib == | == Non-Multilib == | ||
Line 69: | Line 70: | ||
./Build install | ./Build install | ||
[[Category:Perl Modules]] |
Latest revision as of 06:08, 20 October 2010
Download Source: | http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Module-Build-0.35.tar.gz |
---|
Introduction to Module::Build
Project Homepage: Unknown
Dependencies
Required
Optional
Non-Multilib
Compile the package:
perl Build.PL && ./Build && ./Build test
Install the package:
./Build install
Multilib
32Bit
Compile the package:
USE_ARCH=32 perl Build.PL && ./Build && ./Build test
Install the package:
./Build install
N32
Compile the package:
USE_ARCH=n32 perl Build.PL && ./Build && ./Build test
Install the package:
./Build install
64Bit
Compile the package:
USE_ARCH=64 perl Build.PL && ./Build && ./Build test
Install the package:
./Build install