NAME

Perl::Dist::WiX::Asset::Library - "C Library" asset for a Win32 Perl

SYNOPSIS

my $library = Perl::Dist::Asset::Library->new(
    name       => 'zlib',
    url        => 'http://strawberryperl.com/packages/zlib-1.2.3.win32.zip',
    unpack_to  => 'zlib',
    build_a    => {
        'dll'    => 'zlib-1.2.3.win32/bin/zlib1.dll',
        'def'    => 'zlib-1.2.3.win32/bin/zlib1.def',
        'a'      => 'zlib-1.2.3.win32/lib/zlib1.a',
    },
    install_to => {
        'zlib-1.2.3.win32/bin'     => 'c/bin',
        'zlib-1.2.3.win32/lib'     => 'c/lib',
        'zlib-1.2.3.win32/include' => 'c/include',
    },
);

DESCRIPTION

Perl::Dist::WiX::Asset::Library is a data class that provides encapsulation and error checking for a "C library" to be installed in a Perl::Dist::WiX-based Perl distribution.

It is normally created on the fly by the <Perl::Dist::WiX> install_library method (and other things that call it).

Perl::Dist::WiX::Asset::Library is similar to Perl::Dist::WiX::Asset::Binary, in that it captures a name, source URL, and paths for where to install files.

It also takes a few more pieces of information to support certain more esoteric functions unique to C library builds.

The specification of the location to retrieve the package is done via the standard mechanism implemented in Perl::Dist::WiX::Role::Asset.

METHODS

This class inherits from Perl::Dist::WiX::Role::Asset and shares its API.

new

TODO: Document

install

Installs the library specified by this object.

SUPPORT

Bugs should be reported via the CPAN bug tracker at

http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Perl-Dist-WiX

For other issues, contact the author.

AUTHOR

Curtis Jewell <csjewell@cpan.org>

SEE ALSO

Perl::Dist::WiX, Perl::Dist::WiX::Role::Asset

COPYRIGHT

Copyright 2009 - 2010 Curtis Jewell.

Copyright 2007 - 2009 Adam Kennedy.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.