Alien-GHTTP
view release on metacpan or search on metacpan
lib/Alien/GHTTP.pm view on Meta::CPAN
package Alien::GHTTP;
use strict;
use warnings;
our $VERSION = '0.005';
$VERSION = eval $VERSION;
use parent 'Alien::Base';
1;
=head1 NAME
Alien::GHTTP - (DEPRECATED) Easy installation of the GNOME libghttp library
=head1 SYNOPSIS
# Build.PL
use Alien::GHTTP;
use Module::Build 0.28; # need at least 0.28
my $builder = Module::Build->new(
configure_requires => {
'Alien::GHTTP' => '0.005',
},
...
extra_compiler_flags => Alien::GHTTP->cflags,
extra_linker_flags => Alien::GHTTP->libs,
...
);
$builder->create_build_script;
# lib/MyLibrary/GHTTP.pm
package MyLibrary::GHTTP;
use Alien::GHTTP; # dynaload libghttp
...
=head1 DESCRIPTION
Provides the GNOME libghttp
L<http://ftp.gnome.org/pub/gnome/sources/libghttp> (GHTTP) for use by Perl modules, installing it if necessary.
This module relies heavily on the L<Alien::Base> system to do so.
Note that the B<end of life> for this particular library was way, way back in 2002.
You have been warned. Please use some other library.
=head1 SEE ALSO
=over
=item *
L<Alien::Base>
=back
=head1 SOURCE REPOSITORY
L<https://github.com/genio/alien-ghttp>
=head1 AUTHOR
Chase Whitener, E<lt>capoeirab@cpan.orgE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2016 by Chase Whitener
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
( run in 0.632 second using v1.01-cache-2.11-cpan-f5b5a18a01a )