Alien-DjVuLibre
view release on metacpan or search on metacpan
DjVuLibre.pm view on Meta::CPAN
package Alien::DjVuLibre;
use parent qw(Alien::Base);
use strict;
use warnings;
our $VERSION = 0.07;
1;
__END__
=encoding UTF-8
=head1 NAME
Alien::DjVuLibre - Find or download and install DjVuLibre.
=head1 SYNOPSIS
use Alien::DjVuLibre;
my $atleast_version = Alien::DjVulibre->atleast_version($wanted_version);
my $bin_dir = Alien::DjVuLibre->bin_dir;
my $cflags = Alien::DjVuLibre->cflags;
my $cflags_static = Alien::DjVuLibre->cflags_static;
my $dist_dir = Alien::DjVuLibre->dist_dir;
my $exact_version = Alien::DjVuLibre->exact_version($wanted_version);
my $install_type = Alien::DjVuLibre->install_type;
my $libs = Alien::DjVuLibre->libs;
my $libs_static = Alien::DjVuLibre->libs_static;
my $max_version = Alien::DjVuLibre->max_version($wanted_version);
my $version = Alien::DjVuLibre->version;
=head1 DESCRIPTION
Some packages insist on using DjVuLibre library.
This package detect system DjVuLibre library or install own.
=head1 SUBROUTINES/METHODS
All methods are inherited from L<Alien::Base>.
=head1 CONFIGURATION AND ENVIRONMENT
Not yet.
=head1 EXAMPLE
=for comment filename=alien_djvulibre_variables.pl
use strict;
use warnings;
use Alien::DjVuLibre;
print 'cflags: '.Alien::DjVuLibre->cflags."\n";
print 'cflags_static: '.Alien::DjVuLibre->cflags_static."\n";
print 'dist_dir: '.Alien::DjVuLibre->dist_dir."\n";
print 'libs: '.Alien::DjVuLibre->libs."\n";
print 'libs_static: '.Alien::DjVuLibre->libs_static."\n";
print 'version: '.Alien::DjVuLibre->version."\n";
( run in 1.880 second using v1.01-cache-2.11-cpan-df04353d9ac )