ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/String-CRC32C/Makefile.PL
Revision: 1.1
Committed: Mon Mar 24 11:14:59 2025 UTC (17 months, 3 weeks ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_0, rel-0_01, HEAD
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3     use Canary::Stability String::CRC32C => 1, 5.008;
4    
5     WriteMakefile(
6     dist => {
7     PREOP => 'pod2text CRC32C.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8     COMPRESS => 'gzip -9v',
9     SUFFIX => '.gz',
10     },
11     NAME => "String::CRC32C",
12     VERSION_FROM => "CRC32C.pm",
13     CONFIGURE_REQUIRES => {
14     "ExtUtils::MakeMaker" => 6.6,
15     "Canary::Stability" => 0,
16     },
17     BUILD_REQUIRES => {
18     ExtUtils::ParseXS => 3.28,
19     },
20     );
21