comparison interps/clc-intercal/CLC-INTERCAL-Base-1.-94.-2/Makefile.PL @ 996:859f9b4339e6

<Gregor> tar xf egobot.tar.xz
author HackBot
date Sun, 09 Dec 2012 19:30:08 +0000
parents
children
comparison
equal deleted inserted replaced
995:6883f5911eb7 996:859f9b4339e6
1 #!/usr/bin/perl -w
2
3 eval 'exec perl -S $0 ${1+"$@"}'
4 if 0;
5
6 # This script will create the Makefile to build and install CLC-INTERCAL
7
8 # This file is part of CLC-INTERCAL 1.-94.-2
9
10 # Copyright (c) 2008 Claudio Calvelli, all rights reserved.
11
12 # CLC-INTERCAL is copyrighted software. However, permission to use, modify,
13 # and distribute it is granted provided that the conditions set out in the
14 # licence agreement are met. See files README and COPYING in the distribution.
15
16 use vars qw($VERSION $PERVERSION);
17 ($VERSION) = ($PERVERSION = "CLC-INTERCAL Makefile.PL 1.-94.-2") =~ /\s(\S+)$/;
18
19 require './INTERCAL/Exporter.pm';
20 require './INTERCAL/InstallModule.pm';
21
22 import Language::INTERCAL::InstallModule '1.-94.-2';
23 install Language::INTERCAL::InstallModule 'Base', 1, {
24 'Carp' => 0,
25 'Cwd' => 0,
26 'File::Basename' => 0,
27 'File::Spec' => 0,
28 'Getopt::Long' => 0,
29 'IO::File' => 0,
30 'IO::Handle' => 0,
31 };
32
33 1;