Skip to content

Commit

Permalink
Merge pull request hoytech#1 from ingydotnet/no-bundle
Browse files Browse the repository at this point in the history
Make work with new Inline::Module (bundle=>0)
  • Loading branch information
hoytech committed Dec 30, 2014
2 parents 5a1c211 + 56f045d commit c0eeb1d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.SKIP
@@ -1,4 +1,5 @@
MANIFEST.bak
MANIFEST.SKIP
Makefile.old
Makefile$
README.pod
Expand Down
16 changes: 12 additions & 4 deletions Makefile.PL
Expand Up @@ -4,7 +4,6 @@ use ExtUtils::MakeMaker;

use lib 'inc';
use Inline::Module;
BEGIN { *Inline::Module::included_modules = sub { [] } } ## don't bundle in 100s of KBs of modules.. use build-time deps instead

my %args = (
NAME => 'Unicode::Truncate',
Expand All @@ -28,13 +27,22 @@ my %args = (
stub => 'Unicode::Truncate::Inline',
ilsm => 'Inline::C',
makestub => 1,
bundle => 0,
},
},
META_MERGE => {
resources => {
repository => 'git://github.com/hoytech/Unicode-Truncate.git',
bugtracker => 'https://github.com/hoytech/Unicode-Truncate/issues',
resources => {
repository => 'git://github.com/hoytech/Unicode-Truncate.git',
bugtracker => 'https://github.com/hoytech/Unicode-Truncate/issues',
},
prereqs => {
develop => {
requires => {
'Inline::CPP' => '0.71',
'Inline::Module' => '0.32',
},
},
},
},
);

Expand Down

0 comments on commit c0eeb1d

Please sign in to comment.