Subject: | Skip build on non-linux systems? |
It seems that the module depends on the provided binaries (bwa and soap) which are linux-only. It would be a good idea to abort the build as early as possible, for example to avoid fail reports on CPAN Testers (see http://matrix.cpantesters.org/?dist=BioX-Map-CLIS%200.0.6 for current state). Something like
exit 0 if $^O ne 'linux';
in the Makefile.PL, maybe also with additional diagnostics. See also http://stackoverflow.com/a/4611172/2332415