File: Makefile.PL

package info (click to toggle)
libcoro-perl 6.570-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,144 kB
  • sloc: ansic: 2,560; perl: 2,122; makefile: 14
file content (21 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use ExtUtils::MakeMaker;
use Event::MakeMaker;

use 5.005;

use Config;

$|=1;

WriteMakefile(Event::MakeMaker::event_args(
  NAME         => "Coro::Event",
  VERSION_FROM => "Event.pm",
  DEFINE       => $DEFINE,
  DIR          => [],
  PM           => {
                       'Event.pm'	=> '$(INST_LIBDIR)/Event.pm',
                  },
));