Kartik Thakore
On 2010-05-13, at 10:08 PM, Kartik Thakore <thakore.kar...@gmail.com>
wrote:
Hello fellow authors,
In an attempt to make SDL games distributable I have been looking at
how to package with PAR. In the first run using:
pp -B -p -o shooter.par shooter.pl
PAR was picking up all of CPAN::* and the multitude of deps that
came with it.
After hunting around I found that SDL::ConfigData was requiring
Module::Build in the autogenerated sub feature(). Ironically it has
a comment saying to remove this in future releases.
Until then I decided to try:
pp -X Module::Build -B -p -o shooter.par shooter.pl
The file size did not change much so I
unziped shooter.par.
Oops made a mistake here
And sure enough lib/Module/Build.pm is gone but the rest of
lib/Module/Build/*.pm
and the multiple deps still presisted
How can I do the equivalent of -X Module::Build* ?
Here is the shooter.pl script.
http://gist.github.com/301949
Kartik Thakore