File: Makefile.PL

package info (click to toggle)
libb-keywords-perl 1.20-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 132 kB
  • sloc: perl: 536; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 906 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
31
32
33
34
35
36
37
38
39
40
41
42
#!perl -w
# $Id: /src/B-Keywords/trunk/Makefile.PL 189 2006-08-17T14:36:23.798783Z josh  $

use ExtUtils::MakeMaker;
WriteMakefile(
  'NAME'          => 'B::Keywords',
  'VERSION_FROM'  => 'lib/B/Keywords.pm',
  'ABSTRACT_FROM' => 'lib/B/Keywords.pm',
  'AUTHOR'        => 'Joshua ben Jore <jjore@cpan.org>',
  'SIGN'          => 1,
  'PREREQ_PM'	  =>
   {
     'B'                  => 0,
   },
  depend            => { 'README'   => 'lib/B/Keywords.pm' },
  ($ExtUtils::MakeMaker::VERSION gt '6.46' ?
   ('META_MERGE'  =>
    {
      resources =>
      {
	repository  => 'http://github.com/rurban/b-keywords',
	license     => 'http://dev.perl.org/licenses/',
      },
    }
   ) : ()),
  );

package MY;
use Config;

sub depend {
  "
README : \$(VERSION_FROM)
	pod2text \$(VERSION_FROM) > README

release : dist
	git tag \$(VERSION)
	cpan-upload \$(DISTVNAME).tar\$(SUFFIX)
	git push
	git push --tags
"
}