File: Makefile.PL

package info (click to toggle)
libnet-jabber-perl 2.0-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,444 kB
  • sloc: perl: 5,585; sh: 93; makefile: 2
file content (15 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
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::Jabber',
    'VERSION_FROM' => 'lib/Net/Jabber.pm',
    'PREREQ_PM' => {
        'Net::XMPP' => 1.0,
    },
    'dist' => {
        'COMPRESS' => 'gzip --best'
    }
);