1# -*- perl -*-
2# Copyright (C) 2012, 2014 Sergey Poznyakoff <gray@gnu.org>
3#
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation; either version 3, or (at your option)
7# any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17use lib 'inc';
18use ExtUtils::AutoInstall (
19    -core => [
20	 'Getopt::Long' => 2.34,
21	 'Pod::Usage' => 1.51,
22	 'Pod::Man' => 2.25,
23	 'IO' => 1.2301,
24	 'Net::CIDR' => 0.14
25    ]
26);
27
28# See lib/ExtUtils/MakeMaker.pm for details of how to influence
29# the contents of the Makefile that is written.
30WriteMakefile(
31    'NAME'              => 'rpsl2acl',
32    'AUTHOR'            => 'Sergey Poznyakoff <gray@gnu.org>',
33    'ABSTRACT'          => 'Queries a set of RPSL database objects (normally route-sets) and converts them to an ACL for use in BIND configuration files.',
34    'FIRST_MAKEFILE'    => 'Makefile',
35    'VERSION'           => '1.01',
36    'EXE_FILES'         => [ 'rpsl2acl' ]
37);
38