File: Makefile.PL

package info (click to toggle)
libsub-delete-perl 1.00002-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 220 kB
  • sloc: perl: 1,398; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 761 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
BEGIN { require 5.008003 }
	# 5.8.2 doesn't like *foo{THING} for q/quote-like/

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Sub::Delete',
    AUTHOR              => 'Father Chrysostomos <sprout [hat] cpan . org>',
    VERSION_FROM        => 'lib/Sub/Delete.pm',
    ABSTRACT_FROM       => 'lib/Sub/Delete.pm',
    PL_FILES            => {},
    PREREQ_PM => {
         constant                         => 0,
         Exporter                         => 5.57,
         strict                           => 0,
# for testing:
	warnings   => 0,
    },
    dist               => { COMPRESS => 'gzip -9f', SUFFIX => 'gz',
                            TAR => 'COPYFILE_DISABLE=1 tar' },
    clean              => { FILES => 'Sub-Delete-*' },
);