Skip to content

Commit

Permalink
Update to latest Alt best practices.
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 29, 2014
1 parent fb5c2f0 commit 991e29a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Changes
@@ -1,5 +1,5 @@
---
version: 0.0.15
version: 0.0.16
date: Sun Dec 28 18:06:33 PST 2014
changes:
- $Acme::Math::XS::VERSION = -1;
Expand Down
4 changes: 3 additions & 1 deletion Makefile.PL
Expand Up @@ -4,9 +4,10 @@ use lib 'inc';
use ExtUtils::MakeMaker;
use Inline::Module;

my $alt = $ENV{PERL_ALT_INSTALL} || '';
WriteMakefile(
NAME => 'Alt::Acme::Math::XS::EUMM',
VERSION => '0.0.15',
VERSION => '0.0.16',
ABSTRACT => 'Math is HARD (faster!)',
AUTHOR => 'Ingy döt Net <ingy@cpan.org>',
LICENSE => 'perl',
Expand Down Expand Up @@ -35,4 +36,5 @@ WriteMakefile(
],
},
},
DESTDIR => $alt ? $alt eq 'OVERWRITE' ? '' : $alt : 'no-install-alt',
);
3 changes: 2 additions & 1 deletion lib/Acme/Math/XS.pm
@@ -1,6 +1,7 @@
use strict; use warnings;
package Acme::Math::XS;
our $VERSION = -1;
# our $VERSION = 'x.x.x';
use Alt::Acme::Math::XS::EUMM;

use Exporter 'import';
our @EXPORT = qw(
Expand Down
2 changes: 1 addition & 1 deletion lib/Alt/Acme/Math/XS/EUMM.pm
@@ -1,2 +1,2 @@
package Alt::Acme::Math::XS::EUMM;
our $VERSION = '0.0.15';
our $VERSION = '0.0.16';

0 comments on commit 991e29a

Please sign in to comment.