File: Makefile.PL

package info (click to toggle)
libnet-irc-perl 0.75-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 224 kB
  • ctags: 166
  • sloc: perl: 2,303; makefile: 36
file content (32 lines) | stat: -rw-r--r-- 1,200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

WriteMakefile(
	      'NAME'  => 'Net::IRC',
	      'PM'    =>  {
		  'IRC.pm'        => '$(INST_LIBDIR)/IRC.pm',
		  'Connection.pm' => '$(INST_LIBDIR)/IRC/Connection.pm',
		  'Event.pm'      => '$(INST_LIBDIR)/IRC/Event.pm',
		  'DCC.pm'        => '$(INST_LIBDIR)/IRC/DCC.pm',
                  'EventQueue.pm' => '$(INST_LIBDIR)/IRC/EventQueue.pm',
		  'Entry.pm'      => '$(INST_LIBDIR)/IRC/EventQueue/Entry.pm',
	      },
              'PREREQ_PM' => {
                  'IO::Select'    => 0,
                  'Carp'          => 0,
                  'Socket'        => 0,
                  'IO::File'      => 0,
                  'IO::Socket'    => 0,
                  'Sys::Hostname' => 0,
              },
	      'MAN3PODS' => {
		  'IRC.pm' => 'blib/man3/Net::IRC.3pm',
		  'Connection.pm' => 'blib/man3/Net::IRC::Connection.3pm',
		  'DCC.pm' => 'blib/man3/Net::IRC::DCC.3pm',
		  'Event.pm' => 'blib/man3/Net::IRC::Event.3pm',
	      },
	      'VERSION_FROM' => 'IRC.pm', # finds $VERSION
              'dist' => { 'COMPRESS' => 'gzip --best' },
);