File: Makefile.PL

package info (click to toggle)
libauthen-sasl-perl 2.08-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 172 kB
  • ctags: 123
  • sloc: perl: 939; makefile: 34
file content (30 lines) | stat: -rw-r--r-- 488 bytes parent folder | download
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
28
29
30
# This -*- perl -*- script makes the Makefile

use 5.005;
use inc::Module::Install;

name		('Authen-SASL');
abstract	('SASL Authentication framework');
author		('Graham Barr <gbarr@pobox.com>');
version_from	('lib/Authen/SASL.pm');
license		('perl');

check_nmake();      # check and download nmake.exe for Win32

&Makefile->write;
&Meta->write;

## - - - - - - - -

sub MY::postamble {
  return <<'POSTAMBLE';

distdir : manifest run_cpansign

run_cpansign :
	cpansign -s

POSTAMBLE

}