The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Alien::Doxyparse - Build and make available the doxyparse tool

SYNOPSIS

From your Perl script:

  use Alien::Doxyparse;
  use Env qw( @PATH );

  unshift @PATH, Alien::Doxyparse->bin_dir; # doxyparse is now in your path
  system 'doxyparse', ...;

From alienfile:

  share {
    requires 'Alien::Doxyparse';
    build [
      '%{doxyparse} ...',
    ];
  };

DESCRIPTION

**this is a beta release**

This distribution installs Doxyparse 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 Doxyparse 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.