Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/riywo/p5-alien-zookeeper
https://github.com/riywo/p5-alien-zookeeper
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/riywo/p5-alien-zookeeper
- Owner: riywo
- Created: 2012-07-14T17:58:54.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-07-14T18:04:08.000Z (over 12 years ago)
- Last Synced: 2024-10-21T20:05:28.860Z (3 months ago)
- Language: Perl
- Size: 102 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.pod
- Changelog: Changes
Awesome Lists containing this project
README
package Alien::ZooKeeper;
use 5.008_001;
use strict;
use warnings;our $VERSION = '0.01';
use File::ShareDir qw(dist_dir);;
use File::Spec;use constant prefix => dist_dir('Alien-ZooKeeper');
sub include {
return File::Spec->catfile(prefix, 'include');
}sub lib {
return File::Spec->catfile(prefix, 'lib');
}sub bin {
return File::Spec->catfile(prefix, 'bin');
}1;
__END__=head1 NAME
Alien::ZooKeeper - Installation of Perl bindings to ZooKeeper
=head1 VERSION
This document describes Alien::ZooKeeper version 0.01.
=head1 SYNOPSIS
use Net::ZooKeeper; # see Net::ZooKeeper documentation
=head1 DESCRIPTION
This distribution installs F for you.
NOTES: This distribution doesn't install zookeeper itself yet, as
other Alien::* dists do, but it does so in a future.=head1 INSTALL
First, you must install the following C libraries which ZooKeeper depends on:
pkg-config
gettext
glib
xml2
pango
cairoSome of them might be installed by default.
Second, you can install this distribution by C:
cpanm Alien::ZooKeeper
Then, you can use the C module.
=head1 DEPENDENCIES
Perl 5.8.1 or later.
ZooKeeper depends on pkg-config, gettext, glib, xml2, pango and cairo.
You shuould install those libraries by yourself with a package manager.=head1 BUGS
All complex software has bugs lurking in it, and this module is no
exception. If you find a bug please either email me, or add the bug
to cpan-RT.=head1 SEE ALSO
L
L
=head1 AUTHOR
Ryosuke IWANAGA (riywo) Eriywo.jp(at)gmail.comE;
=head1 LICENSE AND COPYRIGHT
Copyright (c) 2011, Ryosuke IWANAGA (riywo). All rights reserved.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.=cut