mirror of
https://github.com/webmin/webmin.git
synced 2025-07-23 00:30:33 +00:00
9 lines
286 B
Perl
9 lines
286 B
Perl
use ExtUtils::MakeMaker;
|
|
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
|
# the contents of the Makefile that is written.
|
|
WriteMakefile(
|
|
'NAME' => 'Webmin::API',
|
|
'VERSION_FROM' => 'API.pm', # finds $VERSION
|
|
'PREREQ_PM' => {}, # e.g., Module::Name => 1.1
|
|
);
|