This module installs all it's .pm files into the $archname folder. In my case that's /usr/local/lib/perl5/site_perl/5.10.1/x86_64-linux/. Since this module contains a pure-perl parser and works fine without the XS library it makes sense to install the .pm files into the non-arch-specific folder.
This would allow this module to be fatpacked.
Distributions with XS should be installed into arch specific directories. The pure perl version ought to be split into a separate distribution to achieve what you described.
This module installs all it's
.pm
files into the $archname folder. In my case that's/usr/local/lib/perl5/site_perl/5.10.1/x86_64-linux/
. Since this module contains a pure-perl parser and works fine without the XS library it makes sense to install the.pm
files into the non-arch-specific folder. This would allow this module to be fatpacked.