Alien-Doxyparse

 view release on metacpan or  search on metacpan

lib/Alien/Doxyparse.pm  view on Meta::CPAN

package Alien::Doxyparse;
use strict;
use warnings;
use parent 'Alien::Base';
 
our $VERSION = '0.17';

=head1 NAME

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

=head1 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} ...',
    ];
  };

=head1 DESCRIPTION

This distribution installs L<Doxyparse|http://github.com/doxygen/doxygen> 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.

=head1 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 C<ALIEN_DOXYPARSE_VERSION> variable.

Example installing Doxyparse C<1.8.16> version:

    ALIEN_DOXYPARSE_VERSION=Release_1_8_16 cpan -i Alien::Doxyparse

See all the
L<Doxygen releases on Github|https://github.com/doxygen/doxygen/releases>.
To install Doxyparse from master branch use C<master> as version:

    ALIEN_DOXYPARSE_VERSION=master cpan -i Alien::Doxyparse

=head1 SEE ALSO

=over

=item *

L<Alien>

=item *



( run in 0.561 second using v1.01-cache-2.11-cpan-2398b32b56e )