From 602b746868d227e0a72144e6677b0d4a14a668cd Mon Sep 17 00:00:00 2001 From: Ricardo SIGNES Date: Sun, 31 Aug 2008 13:33:20 -0400 Subject: [PATCH] making distable --- .gitignore | 1 + perl/Makefile.PL | 26 -------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 perl/Makefile.PL diff --git a/.gitignore b/.gitignore index a3e9234..32c8104 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ js.jar cover_db php/Test.php python/*.pyc +perl/spec diff --git a/perl/Makefile.PL b/perl/Makefile.PL deleted file mode 100644 index 971096a..0000000 --- a/perl/Makefile.PL +++ /dev/null @@ -1,26 +0,0 @@ -require 5.006; -use strict; -use warnings; - -use ExtUtils::MakeMaker; - -WriteMakefile( - DISTNAME => 'Data-Rx', - NAME => 'Data::Rx', - AUTHOR => 'Ricardo SIGNES ', - ABSTRACT => 'perl implementation of Rx schema system', - VERSION => '0.001', - EXE_FILES => [ qw() ], - (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()), - PREREQ_PM => { - "Scalar::Util" => '0', - "File::Find::Rule" => '0', - "Number::Tolerant" => '0', - "JSON::XS" => '0', - "Carp" => '0', - "Test::More" => '0', - "List::Util" => '0', - "autodie" => '0', - "Module::Pluggable::Object" => '0', - }, -);