ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/Makefile.PL
Revision: 1.6
Committed: Mon Jul 13 22:13:17 2009 UTC (14 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_3, rel-2_34, rel-2_32, rel-2_33, rel-2_31, rel-2_29, rel-2_28, rel-2_25, rel-2_27, rel-2_26
Changes since 1.5: +3 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use 5.008002;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
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 VERSION_FROM => "XS.pm",
12 NAME => "JSON::XS",
13 PREREQ_PM => {
14 common::sense => 0,
15 },
16 );
17