File: Makefile.PL

package info (click to toggle)
libdevel-leak-perl 0.03-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 88 kB
  • sloc: perl: 8; makefile: 2
file content (15 lines) | stat: -r--r--r-- 355 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;
use Config;

unless ($Config{'ccflags'} =~ /-DDEBUGGING/)
 {
  warn "This perl is not compiled with -DDEBUGGING - functions restricted\n";
 }

WriteMakefile( 
    'NAME'     => 'Devel::Leak',
    'clean' => {FILES => "*% *.bak"},
    'dist'     => { COMPRESS => 'gzip -f9', SUFFIX => '.gz' },
    'VERSION_FROM'  => 'Leak.pm'
);