Skip to content

Commit

Permalink
alt-inline-0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 30, 2014
1 parent c77356b commit b441191
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,3 +1,5 @@
0.06 2014-12-29
* Use latest Alt best practices
0.05 2014-12-24
* Build in .inline
0.04 2014-12-23
Expand Down
10 changes: 4 additions & 6 deletions Makefile.PL
Expand Up @@ -4,11 +4,12 @@ use lib 'inc';
use ExtUtils::MakeMaker;
use Inline::Module;

my $alt = $ENV{PERL_ALT_INSTALL} || '';
my %WriteMakefileArgs = (
NAME => 'Alt::Devel::GlobalDestruction::XS::Inline',
AUTHOR => 'Ingy döt Net <ingy@cpan.org>',
VERSION_FROM => 'lib/Devel/GlobalDestruction/XS.pm',
ABSTRACT_FROM => 'lib/Devel/GlobalDestruction/XS.pm',
VERSION_FROM => 'lib/Alt/Devel/GlobalDestruction/XS/Inline.pm',
ABSTRACT => 'Alternate Faster implementation of the Devel::GlobalDestruction API (using Inline::Module)',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.008001',
test => { TESTS => 't/*.t' },
Expand All @@ -34,10 +35,7 @@ my %WriteMakefileArgs = (
],
},
},
DESTDIR => $alt ? $alt eq 'OVERWRITE' ? '' : $alt : 'no-install-alt',
);

my $alt = $ENV{PERL_ALT_INSTALL} || '';
$WriteMakefileArgs{DESTDIR} =
$alt ? $alt eq 'OVERWRITE' ? '' : $alt : 'no-install-alt';

WriteMakefile(%WriteMakefileArgs);
2 changes: 1 addition & 1 deletion lib/Alt/Devel/GlobalDestruction/XS/Inline.pm
@@ -1,2 +1,2 @@
package Alt::Devel::GlobalDestruction::XS::Inline;
our $VERSION = '0.05';
our $VERSION = '0.06';

0 comments on commit b441191

Please sign in to comment.