Alien-Libbz2

 view release on metacpan or  search on metacpan

lib/Alien/bz2.pm  view on Meta::CPAN

use warnings;
use Alien::Libbz2;

# ABSTRACT: Build and make available bz2
our $VERSION = '0.24'; # VERSION


sub new
{
  my($class) = @_;
  bless {}, $class;
}


sub cflags
{
  my $cflags = Alien::Libbz2->cflags;
  return $cflags if ! wantarray;
  require Text::ParseWords;
  Text::ParseWords::shellwords($cflags);
}



( run in 2.028 seconds using v1.01-cache-2.11-cpan-de7293f3b23 )