Net-LibLO
view release on metacpan or search on metacpan
use strict;
# Check for pkg-config
my $pkgconfig = `which pkg-config`;
chomp($pkgconfig);
if ($pkgconfig !~ /pkg-config/ or
$pkgconfig =~ /not found/i)
{
die "Error: pkgconfig is not available on your system\n".
"It is available from http://pkgconfig.freedesktop.org/\n";
} else {
my $pkgconfig_version = `$pkgconfig --version`;
chomp( $pkgconfig_version );
print "Found pkg-config version $pkgconfig_version.\n";
}
# Check for liblo
my $liblo_version = `$pkgconfig --modversion liblo`;
chomp($liblo_version);
if ($liblo_version !~ /^\d+\.\d+/) {
liblo perl binding
==================
Perl binding for the liblo library.
LibLO library version 0.23 or higher is required.
http://liblo.sourceforge.net/
Pkg-config version 0.11 or higher is required:
http://pkgconfig.freedesktop.org/
INSTALLATION
------------
I use Module::Build to build and install the module.
To install this module type the following:
perl Build.PL
./Build
( run in 0.438 second using v1.01-cache-2.11-cpan-299005ec8e3 )