From: Matt S Trout Date: Mon, 23 Jan 2012 17:14:48 +0000 (+0000) Subject: add skeleton Makefile.PL and VERSION X-Git-Tag: v1.000000~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FPackage-Variant.git;a=commitdiff_plain;h=eacc208a1204b9a9187686de93e8613410c94269 add skeleton Makefile.PL and VERSION --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..5227b9b --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,12 @@ +use strict; +use warnings FATAL => 'all'; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Package-Variant', + VERSION_FROM => 'lib/Package/Variant.pm', + PREREQ_PM => { + strictures => 1, + Carp => 0, + }, +); diff --git a/lib/Package/Variant.pm b/lib/Package/Variant.pm index c8ccac3..55dd25c 100644 --- a/lib/Package/Variant.pm +++ b/lib/Package/Variant.pm @@ -3,6 +3,10 @@ package Package::Variant; use strictures 1; use Carp qw( croak ); +our $VERSION = '1.000000'; # 1.0.0 + +$VERSION = eval $VERSION; + our %Variable; my $sanitize_importing = sub {