-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
35 lines (31 loc) · 989 Bytes
/
Makefile.PL
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
35
# Copyright (C) 2012 Academic and Research Network of Slovenia (Arnes).
# All Rights Reserved.
#
# This file is part of Route Server Manager (RS Manager).
#
# RS Manager is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation, version 2.0 of the License.
#
# RS Manager is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License v2.0
# along with RS Manager. If not, see:
#
# http://www.gnu.org/licenses/gpl-2.0.html
#
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Net::IRR::Cache',
VERSION_FROM => 'lib/Net/IRR/Cache.pm',
PREREQ_PM => {
YAML::Tiny => 0,
},
dist => {
COMPRESS => 'gzip',
SUFFIX => '.gz',
},
);