ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV-Glib/Makefile.PL
Revision: 1.4
Committed: Mon Nov 1 22:25:22 2010 UTC (13 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +6 -5 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2 use ExtUtils::PkgConfig;
3 use EV::MakeMaker;
4
5 %glib = ExtUtils::PkgConfig->find ("glib-2.0");
6
7 my $mm = MM->new({EV::MakeMaker::ev_args (
8 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 => "EV::Glib",
14 VERSION_FROM => "Glib.pm",
15 CCFLAGS => $glib{cflags},
16 LIBS => [$glib{libs}],
17 PREREQ_FATAL => 1,
18 PREREQ_PM => {
19 common::sense => 0,
20 EV => 4.00,
21 ExtUtils::PkgConfig => 0,
22 },
23 CONFIGURE_REQUIRES => {
24 common::sense => 0,
25 EV => 4.00,
26 ExtUtils::PkgConfig => 0,
27 },
28 )});
29
30 $mm->flush;
31