| Module-Install-Debian documentation | view source | Contained in the Module-Install-Debian distribution. |
Module::Install::Debian - Require debian packages to be installed on the system
Have your Makefile.PL read as follows:
use inc::Module::Install; name 'Foo-Bar'; all_from 'lib/Foo/Bar.pm'; dpkg_requires '' => 'bar'; # require .deb file WriteAll;
Module::Install::Debian allows you to require .deb packages to be installed on the system.
Takes a list of key/value pairs specifying a debian package name and version number. This will install the package in the system if it is not there allready.
This module will not honour the version requirement yet.
Please report any bugs to (patches welcome):
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Module-Install-Debian
Bjørn-Olav Strand <bo@startsiden.no>
Copyright 2009 by ABC Startsiden AS, Bjørn-Olav Strand <bo@startsiden.no>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Module-Install-Debian documentation | view source | Contained in the Module-Install-Debian distribution. |