File: Makefile.PL

package info (click to toggle)
libspoon-perl 0.24-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 296 kB
  • sloc: perl: 2,640; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (2)
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;
require File::Spec;

name        'Spoon';
all_from    'lib/Spoon.pm';

requires(qw(
    perl 5.6.1
    Spiffy 0.22
    IO::All 0.32
    Template 2.10
    Time::HiRes 0
    URI 0
    DB_File 0
));

clean_files(
    File::Spec->catdir(qw(t tmp)),
    File::Spec->catdir(qw(t output)),
);

WriteAll;