NAME
    Alien::Tidyp - building and using tidyp library - <http://www.tidyp.com>

VERSION
    Version 0.99.4 of Alien::Tidyp uses *tidyp* sources v0.99 + some
    patches.

    Specifically this commit:
    <http://github.com/petdance/tidyp/commit/749825bc9>

SYNOPSIS
    Alien::Tidyp during its installation does the following:

    *   Builds *tidyp* binaries from source codes

    *   Installs binaries and dev files (*.h, *.a) into *share* directory of
        Alien::Tidyp distribution

    *   *share* directory is usually something like this:
        /usr/lib/perl5/site_perl/5.10/auto/share/dist/Alien-Tidyp

    Later you can use Alien::Tidyp in your module that needs to link with
    *tidyp* like this:

        # Sample Makefile.pl
        use ExtUtils::MakeMaker;
        use Alien::Tidyp;

        WriteMakefile(
          NAME         => 'Any::Tidyp::Module',
          VERSION_FROM => 'lib/Any/Tidyp/Module.pm',
          LIBS         => Alien::Tidyp->config('LIBS'),
          INC          => Alien::Tidyp->config('INC'),
          # + additional params
        );

METHODS
  config()
    This function is the main public interface to this module.

        Alien::Tidyp->config('LIBS');

    Returns a string like: '-L/path/to/libtidy/dir/lib -ltidyp'

        Alien::Tidyp->config('INC');

    Returns a string like: '-I/path/to/libtidy/dir/include/tidyp'

        Alien::Tidyp->config('PREFIX');

    Returns a string like: '/path/to/libtidy/dir'

AUTHOR
    KMX, <kmx at cpan.org>

BUGS
    Please report any bugs or feature requests to <bug-Alien-Tidyp at
    rt.cpan.org>, or through the web interface at
    <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Alien-Tidyp>.

LICENSE AND COPYRIGHT
    Copyright 2010 KMX.

    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.

