NAME
Alien::LibYAML - Build and install libyaml, a C-based YAML parser and emitter
SYNOPSIS
In your Build.PL
:
use Alien::LibYAML;
use Module::Build;
Module::Build->new(
...
extra_compiler_flags => Alien::LibYAML->cflags,
extra_linker_flags => Alien::LibYAML->libs,
...
)->create_build_script;
DESCRIPTION
This distribution provides an alien wrapper for libyaml. It requires a C compiler. That's all!
SEE ALSO
- YAML::XS
-
Perl bindings for libyaml (library bundled with distribution).
AUTHOR
Original Author:
Richard Simões <rsimoes AT cpan DOT org>
Current Maintainer:
Graham Ollis <plicease AT cpan DOT org>
COPYRIGHT AND LICENSE
Copyright © 2014 Richard Simões. libyaml written and copyrighted by Kirill Simonov. Both libyaml and this distribution are released under the terms of the MIT License and may be modified and/or redistributed under the same or any compatible license.