The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Alien::qd - Alien library for libqd

SYNOPSIS

use strict;
use warnings;
use Module::Build;
use Alien::qd;

# Retrieve the Alien::qd configuration:
my $alien = Alien::qd->new;

# Create the build script:
my $builder = Module::Build->new(
    module_name => 'My::qd::Wrapper',
    extra_compiler_flags => $alien->cflags(),
    extra_linker_flags => $alien->libs(),
    configure_requires => {
        'Alien::qd' => 0,
    },
);
$builder->create_build_script;

DESCRIPTION

Alien::qd provides a CPAN distribution for the qd library. In other words, it installs qd's library in a non-system folder and provides you with the details necessary to include in and link to your C/XS code.

For documentation on the qd's API, see http://crd-legacy.lbl.gov/~dhbailey/mpdist/.

AUTHOR

Alessandro Ranellucci, <aar@cpan.org>

BUGS

The best place to report bugs or get help for this module is to file Issues on github:

https://github.com/alexrj/Alien-qd/issues

Note that I do not maintain qd itself, only the Alien module for it.

LICENSE AND COPYRIGHT

Copyright 2012 Alessandro Ranellucci

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.

This licensing note doesn't affect the shipped libqd archive. See its license for more information.