v1.1.1
[language-befunge-vector-xs.git] / Makefile.PL
blob696c85cb4ec60c5c81ef2b8c0f8c9b84b5754a8e
1 #!perl
3 # This file is part of Language::Befunge::Vector::XS.
4 # Copyright (c) 2008 Jerome Quelin, all rights reserved.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the same terms as Perl itself.
11 BEGIN { require 5.010; }
12 use strict;
13 use warnings;
15 use ExtUtils::MakeMaker;
16 WriteMakefile(
17     NAME          => 'Language::Befunge::Vector::XS',
18     AUTHOR        => 'Jerome Quelin, <jquelin@cpan.org>',
19     VERSION_FROM  => 'lib/Language/Befunge/Vector/XS.pm',
20     ABSTRACT_FROM => 'lib/Language/Befunge/Vector/XS.pm',
21     LICENSE       => 'perl',
22     PREREQ_PM     => { 'Test::More' => 0 },
23     LIBS          => [''],  # e.g., '-lm'
24     DEFINE        => '',    # e.g., '-DHAVE_SOMETHING'
25     INC           => '-I.', # e.g., '-I. -I/usr/include/other'
26     dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
27     clean         => { FILES => [
28         'Language-Befunge-Vector-XS-*',
29         'const-c.inc', 'const-xs.inc',
30         map { ( '*/' x $_ ) . '*~' } 0..4 ],
31     },