File: Makefile.PL

package info (click to toggle)
libconvert-base32-perl 0.06-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 76 kB
  • sloc: perl: 83; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 564 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use strict;
use warnings;

use ExtUtils::MakeMaker qw( WriteMakefile );

my %build_requires = (
    'Test::More'      => 0,  # For testing.
    'Test::Exception' => 0,  # For testing.
);

WriteMakefile(
    NAME          => 'Convert::Base32',
    VERSION_FROM  => 'lib/Convert/Base32.pm',
    ABSTRACT_FROM => 'lib/Convert/Base32.pm',

    ( $ExtUtils::MakeMaker::VERSION lt '6.56'
	? ( PREREQ_PM      => \%build_requires )
	: ( BUILD_REQUIRES => \%build_requires )
    ),

    dist  => { COMPRESS => 'gzip -9f' },
    clean => { FILES => 'Convert-Base32-*' },
);