App-PLab
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
use strict;
use warnings;
use ExtUtils::MakeMaker;
sub ls($)
{
my $d = shift;
opendir D, $d or die $!;
map { "$d/$_" } grep { -f "$d/$_" } readdir D;
}
WriteMakefile(
NAME => 'App::PLab',
VERSION_FROM => 'lib/App/PLab.pm',
EXE_FILES => [ ls 'bin' ],
( run in 0.640 second using v1.01-cache-2.11-cpan-65fba6d93b7 )