summaryrefslogtreecommitdiff
path: root/ext/XS-APItest-KeywordRPN/Makefile.PL
blob: ae2c72a40c950b08bffe6809b5f5c6f761566a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ use 5.006; }
use warnings;
use strict;

use ExtUtils::MakeMaker;

WriteMakefile(
    NAME => "XS::APItest::KeywordRPN",
    VERSION_FROM => "KeywordRPN.pm",
    PREREQ_PM => {},
    ABSTRACT_FROM => "KeywordRPN.pm",
    AUTHOR => "Andrew Main (Zefram) <zefram\@fysh.org>",
);

sub MY::install { "install ::\n" }

1;