Software::Packager

Software::Packager is a common software packaging interface.
Download

Software::Packager Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Bernard Davison
  • Publisher web site:
  • http://search.cpan.org/~rbdavison/Software-Packager-0.09/lib/Software/Packager.pm

Software::Packager Tags


Software::Packager Description

Software::Packager is a common software packaging interface. Software::Packager is a common software packaging interface.SYNOPSIS use Software::Packager; my $packager = new Software::Packager(); $packager->version('1.2.3.4.5.6'); $packager->package_name("Somename"); $packager->program_name('Software Packager'); $packager->description("This is the description."); $packager->short_description("This is a short description."); $packager->output_dir("/home/software/packages"); $packager->category("Applications"); $packager->architecture("sparc"); my %object_data = ( 'SOURCE' => '/source/file1', 'TYPE' => 'file', 'DESTINATION' => '/usr/local/file1', 'USER' => 'joe', 'GROUP' => 'staff', 'MODE' => '0750', ); $packager->add_item(%object_data); my $version = $packager->version(); my $name = $packager->package_name(); my $program_name = $packager->program_name(); my $description = $packager->description(); my $description = $packager->short_description(); my $output_directory = $packager->output_dir(); my $category = $packager->category(); my $arch = $packager->architecture();The Software Packager module is designed to provide a common interface for packaging software on any platform. This module does not do the packaging of the software but is merely a wraper around the various software packaging tools already provided with various operating systems.This module provides the base API and sets default values common to the various software packaging methods. Requirements: · Perl


Software::Packager Related Software