File: Makefile.PL

package info (click to toggle)
libsys-gamin-perl 0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch
  • size: 128 kB
  • ctags: 7
  • sloc: perl: 100; makefile: 4
file content (20 lines) | stat: -rwxr-xr-x 361 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sig/local/bin/perl5 -w

use ExtUtils::MakeMaker;
BEGIN {
  eval {
    require ExtUtils::MM_PRCS;
    import ExtUtils::MM_PRCS;
  };
  if ($@ and $@ =~ /Can\'t locate/) {
    print STDERR "Ignore \"Not a known parameter name\" warnings.\n";
  } elsif ($@) {
    die;
  }
}

WriteMakefile(
  VERSION => '0.1',
  LIBS => [q[-lfam]],
  NAME => q(Sys::Gamin),
);