File: Makefile.PL

package info (click to toggle)
libauthen-sasl-cyrus-perl 0.13-server-10
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 348 kB
  • ctags: 43
  • sloc: perl: 241; makefile: 13
file content (27 lines) | stat: -rwxr-xr-x 689 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
24
25
26
27
# Do yourself a favour, and don't edit this file, see README for build instructions

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'Authen::SASL::Cyrus',
    'VERSION_FROM' => 'Cyrus.pm',
	'PREREQ_PM'		=> {
		Test::Simple => 0,
		Test::More	=> 0,
		Authen::SASL => 2.08,
	},
);

package MY;
sub manifypods
{
	my $inherited = shift->SUPER::manifypods(@_);
	return <<"POD";
$inherited
Cyrus.pod: Cyrus.xs
		\@echo "!!! Developers: Do not edit the Cyrus.pod, edit the Cyrus.xs instead. !!!"
		\@echo "Make will overwrite Cyrus.pod."
		podselect Cyrus.xs > Cyrus.pod
POD
}