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 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.

DOXYPARSE VERSION

Every release of this package installs a stable version of Doxyparse, normally included on the latest Doxygen release. But, it's possible to specify an arbitrary Doxyparse version by setting ALIEN_DOXYPARSE_VERSION variable.

Example installing Doxyparse 1.8.16 version:

    ALIEN_DOXYPARSE_VERSION=Release_1_8_16 cpan -i Alien::Doxyparse

See all the Doxygen releases on Github. To install Doxyparse from master branch use master as version:

    ALIEN_DOXYPARSE_VERSION=master cpan -i Alien::Doxyparse

SEE ALSO

Similar modules:

AUTHOR

Joenio Costa <joenio@joenio.me>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017-2020 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.