File: Makefile.PL

package info (click to toggle)
liblinux-inotify2-perl 1%3A1.22-0.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 92 kB
  • sloc: perl: 126; makefile: 53
file content (17 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use ExtUtils::MakeMaker;

my $mm = MM->new({
    dist         => {
       PREOP	=> 'pod2text Inotify2.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
       COMPRESS	=> 'gzip -9v',
       SUFFIX	=> '.gz',
	            },
    NAME         => "Linux::Inotify2",
    VERSION_FROM => "Inotify2.pm",
    PREREQ_PM    => {
       common::sense => 0,
    },
});

$mm->flush;