File: Makefile.PL

package info (click to toggle)
libtie-refhash-weak-perl 0.09-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 300; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 420 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl -w

use strict;

use ExtUtils::MakeMaker;

WriteMakefile(
	NAME         => 'Tie::RefHash::Weak',
	VERSION_FROM => 'lib/Tie/RefHash/Weak.pm',
	INSTALLDIRS  => 'site',
	SIGN         => 1,
	PL_FILES     => { },
	PREREQ_PM    => {
		'Task::Weaken' => 0, # no weak refs before this
		'Scalar::Util' => 0,
		'Tie::RefHash' => '1.34', # use refaddr instead of overload::StrVal
		'Variable::Magic' => 0,
	},
);