| Revision: | 1.6 |
| Committed: | Mon Apr 25 19:05:29 2016 UTC (10 years, 4 months ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-1_71, rel-1_8, rel-1_5, rel-1_7, rel-1_6, rel-1_82, rel-1_83, rel-1_81, rel-1_86, rel-1_84, rel-1_85 |
| Changes since 1.5: | +3 -0 lines |
| Log Message: | *** empty log message *** |
| # | 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 | CONFIGURE_REQUIRES => { ExtUtils::MakeMaker => 6.52, Canary::Stability => 0 }, |
| 19 | ); |
| 20 |