public
Description: IWL - perl web widget library
Homepage: http://code.google.com/p/iwl
Clone URL: git://github.com/urandom/iwl.git
Click here to lend your support to: iwl and make a donation at www.pledgie.com !
iwl / Makefile.PL
100644 22 lines (15 sloc) 0.472 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use inc::Module::Install;
 
name 'IWL';
all_from 'lib/IWL.pm';
license 'perl';
 
requires 'Locale::Messages';
requires 'Locale::TextDomain' => 1.10;
requires 'File::ShareDir' => 0.05;
requires 'HTML::Parser' => 2.25;
requires 'Cwd' => 3.10;
 
build_requires 'Task::Weaken' => 0.99;
recommends 'Syntax::Highlight::Perl' => 1.00;
 
install_script 'bin/iwl-install';
install_share ;
 
auto_install;
 
WriteAll;