File: Makefile.PL

package info (click to toggle)
mime-construct 1.11%2Bnmu2
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 72 kB
  • ctags: 16
  • sloc: perl: 423; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 457 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
# $Id: Makefile.PL,v 1.2 2005-03-30 20:58:54 roderick Exp $

use ExtUtils::MakeMaker;

WriteMakefile(
    EXE_FILES		=> ['mime-construct'],
    NAME		=> 'mime-construct',
    PREREQ_PM		=> {
			    'MIME::Base64'	=> 0,
			    'MIME::QuotedPrint'	=> 0,
			    'MIME::Types'	=> 0,
			    'Proc::WaitStat'	=> 0,
    },
    VERSION_FROM	=> 'mime-construct',
);

sub MY::dist_core {
    return q(dist:; @echo "use dpkg-buildpackge, not make dist" >&2; false);
}