-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.PL
More file actions
54 lines (43 loc) · 1.34 KB
/
Makefile.PL
File metadata and controls
54 lines (43 loc) · 1.34 KB
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
47
48
49
50
51
52
53
# DESCRIPTION: Perl ExtUtils: Type 'perl Makefile.PL' to create a Makefile for this package
#
# Copyright 2003-2020 by Wilson Snyder. This program is free software;
# you can redistribute it and/or modify it under the terms of either the GNU
# Lesser General Public License Version 3 or the Perl Artistic License Version 2.0.
######################################################################
require 5.005;
use ExtUtils::MakeMaker;
use Carp;
sub MY::postamble {
q{
all::
preexist:
svnorcvs nexists $(DISTNAME)_$(VERSION_SYM)
tag:
svnorcvs tag $(DISTNAME)_$(VERSION_SYM)
maintainer-diff:
svnorcvs diff $(DISTNAME)_$(VERSION_SYM)
maintainer-dist: preexist dist tag
svnorcvs release $(DISTVNAME).tar.gz
maintainer-clean: distclean
-$(RM_RF) README
maintainer-copy:
clean::
-$(RM_RF) test_dir
};
}
WriteMakefile(
VERSION_FROM => 'lib/Parallel/Forker.pm',
DISTNAME => 'Parallel-Forker',
NAME => 'Parallel::Forker',
AUTHOR => 'Wilson Snyder <wsnyder@wsnyder.org>',
ABSTRACT => 'Parallel job forking and management, with expression based control',
PREREQ_PM => {'Proc::ProcessTable' => 0.40,
'Scalar::Util' => 0,
'Test::More' => 0,
'Time::HiRes' => 0,
},
'dist' => {COMPRESS => 'gzip -9f',
SUFFIX => '.gz',
DIST_DEFAULT => 'all tardist',
},
);