Difference between revisions of "Template:Perl Module Common Build"

From CBLFS
Jump to navigationJump to search
 
 
Line 1: Line 1:
General Perl Module Build Instructions
+
== Non-Multilib ==
 +
 
 +
Compile the package:
 +
 
 +
perl Makefile.PL &&
 +
make &&
 +
make test
 +
 
 +
Install the package
 +
 
 +
make install
 +
 
 +
== Multilib ==
 +
 
 +
=== 32Bit ===
 +
 
 +
Compile the package:
 +
 
 +
USE_ARCH=32 perl Makefile.PL &&
 +
make &&
 +
make test
 +
 
 +
Install the package
 +
 
 +
make install
 +
 
 +
=== N32 ===
 +
 
 +
Compile the package:
 +
 
 +
USE_ARCH=n32 perl Makefile.PL &&
 +
make &&
 +
make test
 +
 
 +
Install the package
 +
 
 +
make install
 +
 
 +
=== 64Bit ===
 +
 
 +
Compile the package:
 +
 
 +
USE_ARCH=64 perl Makefile.PL &&
 +
make &&
 +
make test
 +
 
 +
Install the package
 +
 
 +
make install

Latest revision as of 14:10, 30 October 2006

Non-Multilib

Compile the package:

perl Makefile.PL &&
make &&
make test

Install the package

make install

Multilib

32Bit

Compile the package:

USE_ARCH=32 perl Makefile.PL &&
make &&
make test

Install the package

make install

N32

Compile the package:

USE_ARCH=n32 perl Makefile.PL &&
make &&
make test

Install the package

make install

64Bit

Compile the package:

USE_ARCH=64 perl Makefile.PL &&
make &&
make test

Install the package

make install