File: Makefile.PL

package info (click to toggle)
libtemplate-alloy-perl 1.020-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 960 kB
  • sloc: perl: 6,644; makefile: 2
file content (46 lines) | stat: -rw-r--r-- 1,247 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
use 5.006;
use ExtUtils::MakeMaker;

###----------------------------------------------------------------###
#  Copyright 2007-2011 - Paul Seamons                                #
#  Distributed under the GNU General Public License without warranty #
###----------------------------------------------------------------###

WriteMakefile(
              NAME          => "Template::Alloy",
              AUTHOR        => "Paul Seamons",
              ABSTRACT_FROM => "lib/Template/Alloy.pod",
              VERSION_FROM  => "lib/Template/Alloy.pm",
              INSTALLDIRS   => 'site',
              PREREQ_PM     => {
                  'Digest::MD5' => 1,
              },
              
              dist          => {
                DIST_DEFAULT => 'all tardist',
                COMPRESS     => 'gzip -vf',
                SUFFIX       => '.gz',
              },
              
              clean          => {
                FILES        => '*~',
              },
              
              realclean         => {
                FILES        => '*~',
              },
              );

package MY;

sub postamble {
  return qq^
    
pm_to_blib: README

README: lib/Template/Alloy.pod
	pod2text lib/Template/Alloy.pod > README
^;
}

1;