ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/Makefile.PL
Revision: 1.8
Committed: Fri Feb 26 21:46:45 2016 UTC (8 years, 2 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-4_0, rel-4_01, rel-4_03, rel-4_02, rel-4_0_00, rel-3_02, rel-3_03, rel-3_04, HEAD
Changes since 1.7: +4 -1 lines
Log Message:
3.02

File Contents

# User Rev Content
1 root 1.8 use 5.008003;
2 root 1.1 use ExtUtils::MakeMaker;
3    
4 root 1.8 use Canary::Stability JSON::XS => 1, 5.008003;
5    
6 root 1.1 WriteMakefile(
7 root 1.5 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     EXE_FILES => [ "bin/json_xs" ],
13 root 1.1 VERSION_FROM => "XS.pm",
14 root 1.5 NAME => "JSON::XS",
15 root 1.6 PREREQ_PM => {
16 root 1.7 common::sense => 0,
17     Types::Serialiser => 0,
18 root 1.6 },
19 root 1.8 CONFIGURE_REQUIRES => { ExtUtils::MakeMaker => 6.52, Canary::Stability => 0 },
20 root 1.1 );
21