1#!/usr/bin/env -S perl -w
2
3use utf8;
4use strict;
5use warnings;
6use open qw(:locale);
7
8use ExtUtils::MakeMaker;
9
10WriteMakefile(
11    NAME		=> 'UiO::LDAP2PF',
12    VERSION_FROM	=> 'scripts/ldap2pf',
13    ABSTRACT		=> 'Create and update PF tables from LDAP groups',
14    AUTHOR		=> [ 'Dag-Erling Smørgrav <d.e.smorgrav@usit.uio.no>' ],
15    MIN_PERL_VERSION	=> '5.014',
16    PREREQ_PM		=> {
17	'Authen::SASL'		=> 0,
18	'Net::DNS'		=> 0,
19	'Net::LDAP'		=> 0,
20	'Regexp::Common'	=> 0,
21	'IO::Socket::INET6'	=> 0,
22	'Try::Tiny'		=> 0,
23    },
24    PREREQ_FATAL	=> 1,
25    EXE_FILES		=> [
26	'scripts/ldap2pf'
27    ],
28);
29