A utility to mark and operate on files in the shell.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
437 B

use Module::Build;
my $build = Module::Build->new(
module_name => 'App::MarkFiles',
license => 'gpl',
configure_requires => {
'Module::Build' => 0,
},
requires => {
'Getopt::Long' => 0,
'POSIX' => 0,
'Cwd' => 0,
'DBI' => 0,
'DBD::SQLite' => 0,
'Sys::Hostname' => 0,
'perl' => '5.10.0',
},
recommends => {
},
);
$build->create_build_script;