aboutsummaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 5dfe7bb7766e7a82ee92883b130b6599d402d068 (plain) (blame)
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
33
34
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME               => 'App::inotifymask',
    AUTHOR             => 'Tom Ryder <tom@sanctum.geek.nz>',
    VERSION_FROM       => 'bin/inotifymask',
    LICENSE            => 'MIT',
    EXE_FILES          => ['bin/inotifymask'],
    MIN_PERL_VERSION   => '5.010001',
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => '0',
    },
    PREREQ_PM => {
        'Const::Fast'     => 0,
        'File::Find'      => 0,
        'File::stat'      => 0,
        'Linux::Inotify2' => 0,
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources   => {
            homepage   => 'https://sanctum.geek.nz/cgit/inotifymask.git/',
            repository => {
                type => 'git',
                url  => 'https://sanctum.geek.nz/code/inotifymask.git/',
                web  => 'https://sanctum.geek.nz/cgit/inotifymask.git/',
            },
        },
    },
    clean => { FILES => 'App-inotifymask-*' },
);