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 (7 months, 3 weeks 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

# Content
1 use 5.010001; # for utf-8, and Time::Piece
2 use ExtUtils::MakeMaker;
3
4 use Canary::Stability CBOR::XS => 1, 5.010001;
5
6 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 common::sense => 0,
16 Types::Serialiser => 0,
17 },
18 TEST_REQUIRES => {
19 Task::Weaken => 1.06,
20 },
21 CONFIGURE_REQUIRES => {
22 ExtUtils::MakeMaker => 6.64,
23 Canary::Stability => 0,
24 },
25 );
26