ExtUtils::Depends

A Perl module to easily generate XS extensions
Download

ExtUtils::Depends Ranking & Summary

Advertisement

  • Rating:
  • License:
  • LGPL
  • Price:
  • FREE
  • Publisher Name:
  • gtk2-perl team

ExtUtils::Depends Tags


ExtUtils::Depends Description

ExtUtils::Depends is an open source Perl module, part of the Gtk2-Perl project, that will help developers to easily build XS extensions, which depend on other XS extensions. SYNOPSIS use ExtUtils::Depends; $package = new ExtUtils::Depends ('pkg::name', 'base::package') # set the flags and libraries to compile and link the module $package->set_inc("-I/opt/blahblah"); $package->set_lib("-lmylib"); # add a .c and an .xs file to compile $package->add_c('code.c'); $package->add_xs('module-code.xs'); # add the typemaps to use $package->add_typemaps("typemap"); # safe the info $package->save_config('Files.pm'); WriteMakefile( 'NAME' => 'Mymodule', $package->get_makefile_vars() ); Product's homepage


ExtUtils::Depends Related Software