]> git.donarmstrong.com Git - term-progressbar.git/commitdiff
remove INSTALL and configure
authorGabor Szabo <szabgab@gmail.com>
Fri, 18 May 2012 03:31:04 +0000 (06:31 +0300)
committerGabor Szabo <szabgab@gmail.com>
Fri, 18 May 2012 03:31:04 +0000 (06:31 +0300)
Changes
INSTALL [deleted file]
configure [deleted file]

diff --git a/Changes b/Changes
index 263389a2dcace7b235e214bc847dee6dafa1639e..0e46155d758fbb46160fea449bea32029ea22a8e 100644 (file)
--- a/Changes
+++ b/Changes
@@ -3,6 +3,8 @@ Revision history for Perl extension Term-ProgressBar.
 2.13 Fri May 18 06:24:42 2012
        - remove unused and invalid SIGNATURE file
        - move content of BUGS to Changes
+       - Remove the INSTALL and configure files,
+         people should use the standard CPAN installation tools
     
 
 2.12 Wed May 16 12:47:16 2012
diff --git a/INSTALL b/INSTALL
deleted file mode 100644 (file)
index 66d6aec..0000000
--- a/INSTALL
+++ /dev/null
@@ -1,21 +0,0 @@
-To install this module, use
-
-  ./configure
-  make
-  make test
-  make install
-
-This will install using /usr/bin/perl .  If you wish to install using the perl
-in your PATH, use 'perl ./configure' instead of 'configure'.
-
-If you wish to install to a non-standard location, use 'configure
---prefix=location' instead of 'configure'.
-
-So, to use the perl in your PATH to install to '/tmp', use
-
-  perl ./configure --prefix=/tmp
-  make
-  make test
-  make install
-
-Enjoy.
diff --git a/configure b/configure
deleted file mode 100644 (file)
index 5ec7005..0000000
--- a/configure
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/perl -w
-
-use 5.006;
-use strict;
-
-use File::Spec        qw( );
-use Getopt::Long 2.19 qw( GetOptions );
-
-my $DEBUG;
-my $prefix;
-GetOptions ('debug'     => \$DEBUG,
-            'prefix=s'  => \$prefix,
-           )
-  or die "Options parsing failed";
-
-warn "Building with perl: $^X\n";
-
-use constant MOD_REQS =>
-  [
-    { name    => 'Class::MethodMaker',
-      version => '1.02',
-      
-    },
-  
-    { name    => 'Term::ReadKey',
-      version => '2.14',
-      package => 'TermReadKey',
-    },
-  
-  ];
-
-use constant EXEC_REQS => [ ];
-
-
-
-use constant NAME         => 'Term-ProgressBar';
-use constant VERSION_FROM =>
-  File::Spec->catfile(qw( lib Term ProgressBar.pm ));
-use constant AUTHOR       => 'Martyn J. Pearce ';
-use constant ABSTRACT     => 'provide a progress meter on a standard terminal';
-sub          PREFIX       {   $prefix }
-
-use FindBin 1.42 qw( $Bin );
-use lib $Bin;
-use lib '.';
-require 'make-pm';