1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-aa,v 1.1.1.1 2003/12/03 15:56:20 epg Exp $
--- Makefile.PL.orig Mon Jun 24 22:59:08 2002
+++ Makefile.PL
@@ -1,19 +1,6 @@
use ExtUtils::MakeMaker;
-my @programs;
-
-for (split "\n", <<'QUERIES') {
-ysh|y|YAML Shell
-xyx|y|YAML<->XML transform
-yaml2outline|y|YAML-to-Outline converter
-phone2yaml|y|Palm phone list converter
-QUERIES
- my ($program, $default, $description) = split /\|/, $_;
- if (prompt("Do you want to install '$program', the $description?",
- $default) =~ /^y/) {
- push(@programs, $program);
- }
-}
+my @programs = ('ysh', 'xyx', 'yaml2outline', 'phone2yaml');
WriteMakefile(
NAME => 'YAML',
|