ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Glib-EV/Makefile.PL
Revision: 1.7
Committed: Mon Nov 1 22:23:31 2010 UTC (13 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_02, HEAD
Changes since 1.6: +6 -10 lines
Log Message:
2.02

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2     use ExtUtils::PkgConfig;
3     use EV::MakeMaker;
4    
5     %glib = ExtUtils::PkgConfig->find ("glib-2.0");
6    
7 root 1.7 WriteMakefile(EV::MakeMaker::ev_args (
8 root 1.1 dist => {
9     PREOP => 'pod2text EV.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
10     COMPRESS => 'gzip -9v',
11     SUFFIX => '.gz',
12     },
13     NAME => "Glib::EV",
14     VERSION_FROM => "EV.pm",
15     CCFLAGS => $glib{cflags},
16     LIBS => [$glib{libs}],
17     PREREQ_FATAL => 1,
18     PREREQ_PM => {
19 root 1.7 EV => 4.00,
20 root 1.1 ExtUtils::PkgConfig => 0,
21     },
22 root 1.7 CONFIGURE_REQUIRES => {
23     EV => 4.00,
24     ExtUtils::PkgConfig => 0,
25 root 1.1 },
26 root 1.7 ));