File: Makefile.PL

package info (click to toggle)
libjifty-plugin-chart-perl 1.01%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 348 kB
  • ctags: 350
  • sloc: perl: 2,614; sh: 48; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use inc::Module::Install;
name('Jifty-Plugin-Chart');
all_from('lib/Jifty/Plugin/Chart.pm');

requires('Jifty' => '0.90409');
recommends('Chart::Base');
recommends('GD');          # for a testing hack
recommends('GD::Graph');
recommends('XML::Simple');
recommends('Image::Info'); # for testing

auto_install();
tests(qw( t/*/t/*.t ));

install_share;

WriteAll;