The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# -*- mode: perl -*-
# ============================================================================
# Makefile for the Perl module Net::Dev::Tools::MIB::MIBLoadOrder.
# Copyright (c) 1998-2004 Scott Parsons <sparsons@cpan.org>
# All rights reserved.
# This program is free software; you may redistribute it and/or modify it
# under the same terms as Perl itself.
# ============================================================================

eval { require 5.6.0 } or die <<'EOD'; 

   Net::Dev requires Perl 5.6.0

EOD

use ExtUtils::MakeMaker qw(WriteMakefile);

WriteMakefile(
   AUTHOR        => 'Scott Parsons <sparsons@cpan.org>',
   ABSTRACT      => 'Determine MIB load order for NMS',
   NAME          => 'Net::Dev::Tools::MIB::MIBLoadOrder',
   DISTNAME      => 'Net-Dev-MIBLoadOrder',
   VERSION       => '1.1.0',
   dist          => { 
      CI       => 'ci -u -m\"Changes for v$(VERSION)\"',
      COMPRESS => 'gzip --best', 
      SUFFIX   => 'gz',
      TAR      => 'tar',
      TARFLAGS => 'cvf', 
   },
);

exit 0;