NAME
Alien::SLOCCount - Build and make available the sloccount tool
SYNOPSIS
From your Perl script:
use Alien::SLOCCount;
use Env qw( @PATH );
unshift @PATH, Alien::SLOCCount->bin_dir; # sloccount is now in your path
system 'sloccount', ...;
From alienfile:
share {
requires 'Alien::SLOCCount';
build [
'%{sloccount} ...',
];
};
DESCRIPTION
This distribution installs SLOCCount so that it can be used by other Perl distributions. If already installed for your operating system, and it can be found, this distribution will use the SLOCCount that comes with your operating system, otherwise it will download it from the Internet, build and install it from you.
SEE ALSO
Similar modules:
AUTHOR
Joenio Costa <joenio@joenio.me>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Joenio Costa.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.