Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.207.371 Times

Extutils freeware
Filter: All | Freeware | Demo
 

Extutils

1 2 > 
Added: April 27, 2010 | Visits: 1.648

ExtUtils::ModuleMaker::Licenses ExtUtils::ModuleMaker::Licenses is a Perl module to get the License for a new module. SYNOPSIS A supporting player for ExtUtils::ModuleMaker to get the COPYRIGHT section of pod and the contents of the LICENSE file. USAGE Should only be called from ExtUtils::ModuleMaker. PUBLIC METHODS...



Platforms: *nix

License: Freeware Size: 80.9 KB Download (274): ExtUtils::ModuleMaker::Licenses Download

Added: April 13, 2010 | Visits: 960

ExtUtils::AutoInstall ExtUtils::AutoInstall is a Perl module to automatic install of dependencies via CPAN. SYNOPSIS In Makefile.PL, with Module::Install available on the authors system: use inc::Module::Install; name (Joe-Hacker); abstract (Perl Interface to Joe Hacker); author (Joe Hacker ); include...





Platforms: *nix

License: Freeware Size: 26.62 KB Download (152): ExtUtils::AutoInstall Download

Added: September 07, 2010 | Visits: 1.256

Gtk2::CodeGen Gtk2::CodeGen is a code generation utilities for Glib-based bindings. SYNOPSIS # usually in Makefile.PL use Gtk2::CodeGen; # most common, use all defaults Gtk2::CodeGen->parse_maps (myprefix); Gtk2::CodeGen->write_boot; # more exotic, change everything Gtk2::CodeGen->parse_maps (foo,...


Platforms: *nix

License: Freeware Size: 614.4 KB Download (133): Gtk2::CodeGen Download

Added: November 01, 2010 | Visits: 922

ExtUtils::ModuleMaker::PBP ExtUtils::ModuleMaker::PBP is a Perl module to create a Perl extension in the style of Damian Conways Perl Best Practices. SYNOPSIS use ExtUtils::ModuleMaker::PBP; $mod = ExtUtils::ModuleMaker::PBP->new( NAME => Sample::Module ); $mod->complete_build(); $mod->dump_keys(qw| ... # key...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (120): ExtUtils::ModuleMaker::PBP Download

Added: January 18, 2010 | Visits: 1.296

Sort::Half::Maker Sort::Half::Maker is a Perl module to create half-sort subs easily. SYNOPSIS use Sort::Half::Maker qw(make_halfsort); $sub = make_halfsort( start => [ qw(x y z) ], end => [ qw(a b c) ], fallback => sub { $_[0] cmp $_[1] }, ); @list = sort $sub qw(a y f h w z b t x); # qw(x y z f h t w...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (118): Sort::Half::Maker Download

Added: July 17, 2010 | Visits: 1.202

Glib::CodeGen Glib::CodeGen is a code generation utilities for Glib-based bindings. SYNOPSIS # usually in Makefile.PL use Glib::CodeGen; # most common, use all defaults Glib::CodeGen->parse_maps (myprefix); Glib::CodeGen->write_boot; # more exotic, change everything Glib::CodeGen->parse_maps (foo,...


Platforms: *nix

License: Freeware Size: 225.28 KB Download (118): Glib::CodeGen Download

Added: November 12, 2010 | Visits: 982

CORBA::IOP::IOR CORBA::IOP::IOR is a Perl module used to decode, munge, and re-encode CORBA IORs. SYNOPSIS #!/usr/local/bin/perl -w require CORBA::IOP::IOR; $ior = new CORBA::IOP::IOR; $ior->parseIOR($ARGV[0]); $ior->printHash(); $ior->{IIOP_profile}->{host} = "host.domain.name"; print...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (109): CORBA::IOP::IOR Download

Added: June 02, 2010 | Visits: 961

Apache::TestMB Apache::TestMB is a subclass of Module::Build to support Apache::Test. SYNOPSIS Standard process for building & installing modules: perl Build.PL ./Build ./Build test ./Build install Or, if youre on a platform (like DOS or Windows) that doesnt like the "./" notation, you can do this:...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (100): Apache::TestMB Download

Added: February 15, 2010 | Visits: 890

ExtUtils::Manifest ExtUtils::Manifest is a Perl module that contains utilities to write and check a MANIFEST file. SYNOPSIS use ExtUtils::Manifest qw(...funcs to import...); mkmanifest(); my @missing_files = manicheck; my @skipped = skipcheck; my @extra_files = filecheck; my($missing, $extra) =...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (99): ExtUtils::Manifest Download

Added: July 04, 2010 | Visits: 1.621

OpenInteract2::Manual::Tutorial OpenInteract2::Manual::Tutorial is a Perl module that will teach learn you how to create and modify a package. SYNOPSIS This tutorial will show you the different methods for creating a package and how to maintain them. CREATING THE PACKAGE A word on the example For our example were...


Platforms: *nix

License: Freeware Size: 931.84 KB Download (99): OpenInteract2::Manual::Tutorial Download

Added: May 22, 2010 | Visits: 1.231

Module::Build::Authoring Module::Build::Authoring are authoring Module::Build modules. When creating a Build.PL script for a module, something like the following code will typically be used: use Module::Build; my $build = Module::Build->new ( module_name => Foo::Bar, license => perl, requires => { perl =>...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (96): Module::Build::Authoring Download

Added: March 22, 2010 | Visits: 756

Text::Scrub Text::Scrub is a Perl module used to wild card out text used for comparison. SYNOPSIS ######### # Subroutine Interface # use Text::Scrub qw(scrub_date scrub_date_ticket scrub_date_version scrub_file_line scrub_probe scrub_test_file); $scrubbed_text = scrub_architect($script_text)...


Platforms: *nix

License: Freeware Size: 63.49 KB Download (96): Text::Scrub Download

Added: November 13, 2010 | Visits: 1.088

Module::Install Module::Install is a standalone, extensible Perl module installer. SYNOPSIS In your Makefile.PL: (Recommended Usage) # Load the Module::Install bundled in ./inc/ use inc::Module::Install; # Define metadata name Your-Module; all_from lib/Your/Module.pm; # Specific dependencies...


Platforms: *nix

License: Freeware Size: 79.87 KB Download (95): Module::Install Download

Added: July 01, 2010 | Visits: 1.150

Module::Build Module::Build is a Perl module for build and install Perl modules. SYNOPSIS Standard process for building & installing modules: perl Build.PL ./Build ./Build test ./Build install Or, if youre on a platform (like DOS or Windows) that doesnt require the "./" notation, you can do this:...


Platforms: *nix

License: Freeware Size: 184.32 KB Download (95): Module::Build Download

Added: March 01, 2010 | Visits: 925

Kaboot Lite Kaboot Linux Operating system aims to provide an operating system which you can take anywhere and has all your favourite programs on. Kaboot operating system is avaliable as a Live CD or Live USB you can take with you anywhere. A number of different versions are avaliable, two optimised for...


Platforms: *nix

License: Freeware Size: 284.6 MB Download (94): Kaboot Lite Download

Added: June 14, 2010 | Visits: 894

Kaboot Science Kaboot Linux Operating system aims to provide an operating system which you can take anywhere and has all your favourite programs on. Kaboot operating system is avaliable as a Live CD or Live USB you can take with you anywhere. A number of different versions are avaliable, two optimised for...


Platforms: *nix

License: Freeware Size: 348.5 MB Download (94): Kaboot Science Download

Released: December 25, 2012  |  Added: December 25, 2012 | Visits: 1.866

Module::MakefilePL::Parse Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", <$fh>) ); $info = $parser->required; The purpose of this module is to determine the...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (94): Module::MakefilePL::Parse Download

Added: November 22, 2010 | Visits: 999

ExtUtils::Embed ExtUtils::Embed is a Perl module with utilities for embedding Perl in C/C++ applications. SYNOPSIS perl -MExtUtils::Embed -e xsinit perl -MExtUtils::Embed -e ldopts ExtUtils::Embed provides utility functions for embedding a Perl interpreter and extensions in your C/C++ applications....


Platforms: *nix

License: Freeware Size: 19.46 KB Download (93): ExtUtils::Embed Download

Added: July 10, 2010 | Visits: 1.062

Module::Starter::XSimple Module::Starter::XSimple is a Perl module to create XS modules with Module::Starter. Replacement class for Module::Starter::Simple. Can be used in two ways: Using the commandline Pass as an override class to the module-starter script: module-starter --module=[modulename]...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (93): Module::Starter::XSimple Download

Added: January 15, 2010 | Visits: 874

Acme::MetaSyntactic::linux Acme::MetaSyntactic::linux - The Linux theme. This theme contains the lists all the known and less known Linux distributions, as maintained by DistroWatch on http://distrowatch.com/stats.php. Note that the distribution list also contains the *BSD projects. When writing code examples, its...


Platforms: *nix

License: Freeware Size: 194.56 KB Download (93): Acme::MetaSyntactic::linux Download

1 2 >