ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/Makefile.PL
Revision: 1.7
Committed: Mon Oct 28 23:19:54 2013 UTC (10 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_0, rel-3_01
Changes since 1.6: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.4 use 5.008002;
2 root 1.1 use ExtUtils::MakeMaker;
3    
4     WriteMakefile(
5 root 1.5 dist => {
6     PREOP => 'pod2text XS.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
7     COMPRESS => 'gzip -9v',
8     SUFFIX => '.gz',
9     },
10     EXE_FILES => [ "bin/json_xs" ],
11 root 1.1 VERSION_FROM => "XS.pm",
12 root 1.5 NAME => "JSON::XS",
13 root 1.6 PREREQ_PM => {
14 root 1.7 common::sense => 0,
15     Types::Serialiser => 0,
16 root 1.6 },
17 root 1.1 );
18