|
Revision 186, 336 bytes
(checked in by athomas, 4 years ago)
|
Removed plugin dir, made whole system into a Perl package and added an "init"
command to the manage script itself:
manage init <cli> <module> [<module> ...]
|
| Line | |
|---|
| 1 |
# CLI Makefile.PL Version 1.00 |
|---|
| 2 |
|
|---|
| 3 |
require 5.001; |
|---|
| 4 |
|
|---|
| 5 |
use ExtUtils::MakeMaker; |
|---|
| 6 |
|
|---|
| 7 |
&WriteMakefile( |
|---|
| 8 |
NAME => 'CLI', |
|---|
| 9 |
DISTNAME => 'CLI', |
|---|
| 10 |
ABSTRACT => 'Infrastructure to ease the creation of command line interfaces.', |
|---|
| 11 |
AUTHOR => 'Alec Thomas <alec@swapoff.org>', |
|---|
| 12 |
EXE_FILES => [ 'manage' ], |
|---|
| 13 |
VERSION_FROM => 'CLI.pm', |
|---|
| 14 |
PMLIBDIRS => [ './CLI' ], |
|---|
| 15 |
); |
|---|