ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Async-Interrupt/Makefile.PL
Revision: 1.2
Committed: Sun Jul 12 23:03:36 2009 UTC (14 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_042, rel-1_22, rel-0_5, rel-1_1, rel-1_0, rel-0_501, rel-1_2, rel-1_02, rel-1_03, rel-1_01, rel-1_04, rel-1_05, rel-0_06, rel-1_21
Changes since 1.1: +4 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use 5.008; # apparently PL_sighandlerp was introduced with 5.008 - correct me if wrong
4
5 WriteMakefile(
6 dist => {
7 PREOP => 'pod2text Interrupt.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz',
10 },
11
12 PREREQ_PM => {
13 common::sense => 0,
14 },
15 NAME => "Async::Interrupt",
16 VERSION_FROM => "Interrupt.pm",
17 );
18