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.178.143 Times

ExtUtils::AutoInstall 0.63

  Date Added: April 13, 2010  |  Visits: 960

ExtUtils::AutoInstall

Report Broken Link
Printer Friendly Version


Product Homepage
Download (152 downloads)

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 (ExtUtils::AutoInstall); requires (Module0); # mandatory modules features ( -config => { make_args => --hello, # option(s) for CPAN::Config force => 1, # pseudo-option to force install do_once => 1, # skip previously failed modules }, Feature1 => [ Module2 => 0.1, ], Feature2 => [ Module3 => 1.0, ], ); auto_install(); &WriteAll; Invoking the resulting Makefile.PL: % perl Makefile.PL # interactive behaviour % perl Makefile.PL --defaultdeps # accept default value on prompts % perl Makefile.PL --checkdeps # check only, no Makefile produced % perl Makefile.PL --skipdeps # ignores all dependencies % perl Makefile.PL --testonly # dont write installation targets Note that the trailing deps of arguments may be omitted, too. Using --defaultdeps will make Makefile.PL behave similarly to a regular Makefile.PL file with PREREQ_PM dependencies. One can use environment variables (see "ENVIRONMENT") below to set a default behavior instead of specifying it in the command line for every invocation of Makefile.PL. Using make (or nmake): % make [all|test|install] # install dependencies first % make checkdeps # same as the --checkdeps above % make installdeps # install dependencies only.

Requirements: No special requirements
Platforms: Linux
Keyword: Autoinstall Automatic Automatic Install Cpan Dependencies Extutils Extutilsautoinstall Install Libraries Makefile Pl Module Perl Perl Module Via
Users rating: 0/10

License: Freeware Size: 26.62 KB
EXTUTILS::AUTOINSTALL RELATED
Libraries  -  Module::Install 0.64
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...
79.87 KB  
Utilities  -  IE7 Automatic Install Disabler 2.0
Allows you to easily enable or disable the automatic installation of Internet Explorer 7 by Microsoft Automatic Updates on your XP, or 2003 system
987 KB  
Libraries  -  Test::Dependencies 0.08
Test::Dependencies is a Perl module to ensure that your Makefile.PL specifies all module dependencies. SYNOPSIS In your t/00-dependencies.t: use Test::Dependencies exclude => [qw/ Your::Namespace Some::Other::Namespace /];...
21.5 KB  
Libraries  -  Module::AutoINC 0.02
SYNOPSIS perl -MModule::AutoINC ABSTRACT When Module::AutoINC is loaded, it will add itself to @INC and catch any requests for missing resources. If a Perl module is requested that has not been installed, then this will attempt to...
5.12 KB  
Modules  -  Workflow post-install 6.x-1.2
Workflow post-install is a utility module containing functions you may want to execute on existing content after you have installed the Workflow module.This module was developed in response to various forum discussions, for instance #183133: Set...
10 KB  
Network & Internet  -  OpenPlugin 0.112
OpenPlugin is a Plugin manager for web applications. There are many web application frameworks out there, and each seems to haveits own method of handling sessions, user authentication, datasourcemanagement, logging, etc. OpenPlugins goal is to...
82.94 KB  
Video Editors  -  VideoGuide 0.21
VideoGuide is content management system for video libraries. It allows you organize your video files, added film descriptions from IMDB.com or manually, assing genres, persons etc. There is a new feature in the module IMDB::Film. Now you can...
47.1 KB  
Networking Tools  -  Net::FTP 1.19
Net::FTP is a FTP Client class. Net::FTP is a class implementing a simple FTP client in Perl as described in RFC959. It provides wrappers for a subset of the RFC959 commands. FTP stands for File Transfer Protocol. It is a way of transferring...
64.51 KB  
Utilities  -  mtop 0.6.6
mtop (MySQL top) monitors a MySQL database showing the queries which are taking the most amount of time to complete. Installation: To install mtop, run the following: perl Makefile.PL make make install Run: perl Makefile.PL...
49.15 KB  
File Utilities  -  Data::Locations 5.4
Data::Locations - magic insertion points in your data Did you already encounter the problem that you had to produce some data in a particular order, but that some piece of the data was still unavailable at the point in the sequence where it...
44.03 KB  
NEW DOWNLOADS IN PROGRAMMING, LIBRARIES
Programming  -  Cedalion for Linux 0.2.6
Cedalion is a programming language that allows its users to add new abstractions and define (and use) internal DSLs. Its innovation is in the fact that it uses projectional editing to allow the new abstractions to have no syntactic limitations.
471.04 KB  
Programming  -  Math::GMPf 0.29
Math::GMPf - perl interface to the GMP library's floating point (mpf) functions.
30.72 KB  
Programming  -  Net::Wire10 1.08
Net::Wire10 is a Pure Perl connector that talks to Sphinx, MySQL and Drizzle servers. Net::Wire10 implements the low-level network protocol, alias the MySQL wire protocol version 10, necessary for talking to one of the aforementioned...
30.72 KB  
Programming  -  logilab-common 0.56.2
a bunch of modules providing low level functionnalities shared among some python projects devel Please note that some of the modules have some extra dependencies. For instance, logilab.common.db will require a db-api 2.0 compliant...
174.08 KB  
Programming  -  OpenSSL for linux 1.0.0a
The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a...
3.83 MB  
Libraries  -  wolfSSL 4.0.0
The wolfSSL embedded SSL/TLS library is a lightweight SSL library written in ANSI standard C and targeted for embedded and RTOS environments - primarily because of its small size, speed, and feature set. It is commonly used in standard operating...
3.88 MB  
Libraries  -  EuGTK 4.8.9
Makes it easy to develop good- looking, fast, cross-platform programs that run on Linux, OS X, and Windows. Euphoria is a very fast interpreted/compiled language with straight-forward syntax. EuGTK allows programming in a clean, object-oriented...
10.68 MB  
Libraries  -  Linux User Group Library Manager 1.0
The LUG Library Manager is a project to help Linux User Groups start their own library. A LUG library is helpful to the community at large because it increases access to information, and gives everyone the opportunity to become more knowledgeable.
5.35 KB  
Libraries  -  Module::MakefilePL::Parse 0.12
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("", ) ); $info = $parser->required;...
8.19 KB  
Libraries  -  sqlpp 0.06
sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also...
10.24 KB