ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CBOR-XS/Makefile.PL
Revision: 1.7
Committed: Fri Sep 8 20:03:06 2023 UTC (8 months, 1 week ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_87, HEAD
Changes since 1.6: +7 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.5 use 5.010001; # for utf-8, and Time::Piece
2 root 1.1 use ExtUtils::MakeMaker;
3    
4 root 1.6 use Canary::Stability CBOR::XS => 1, 5.010001;
5    
6 root 1.1 WriteMakefile(
7     dist => {
8     PREOP => 'pod2text XS.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
9     COMPRESS => 'gzip -9v',
10     SUFFIX => '.gz',
11     },
12     VERSION_FROM => "XS.pm",
13     NAME => "CBOR::XS",
14     PREREQ_PM => {
15 root 1.3 common::sense => 0,
16     Types::Serialiser => 0,
17 root 1.1 },
18 root 1.7 TEST_REQUIRES => {
19     Task::Weaken => 1.06,
20     },
21     CONFIGURE_REQUIRES => {
22     ExtUtils::MakeMaker => 6.64,
23     Canary::Stability => 0,
24     },
25 root 1.1 );
26