File: Makefile.PL

package info (click to toggle)
libsnmp-mib-compiler-perl 0.06-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,036 kB
  • sloc: perl: 2,656; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 631 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- mode: Perl -*-

use ExtUtils::MakeMaker qw(WriteMakefile);

WriteMakefile(NAME         => "SNMP::MIB::Compiler",
              VERSION_FROM => "lib/SNMP/MIB/Compiler.pm",
              dist         => { COMPRESS => "gzip", SUFFIX => "gz" },
	      PREREQ_PM    => { 'Data::Dumper'  => 0,
				'Data::Compare' => 0 },
	      clean        => { FILES => '*.bak *.old out/* ' .
				   'lib/*/*/*~ lib/*/*/*/*~' },
	      EXE_FILES    => [ qw(mibcompiler mibbrowser) ],
              );

sub MY::postamble {
'
sync-in:
	rsync -rv -e ssh nexus:~/reseaux/devel/mib/. .

sync-out:
	rsync -rv -e ssh . nexus:~/reseaux/devel/mib/.
';
}