Add release notes for 0.1.0
[umph-prompt.git] / Makefile.PL
blobea143f60bd4751d1e15044616ae6c205f369d93b
2 use warnings;
3 use strict;
5 use 5.010001;
6 use ExtUtils::MakeMaker;
8 WriteMakefile(
9   NAME               => 'Umph::Prompt',
10   VERSION_FROM       => 'lib/Umph/Prompt.pm',           # finds $VERSION
11   BUILD_REQUIRES     => {'ExtUtils::MakeMaker' => 0,},
12   CONFIGURE_REQUIRES => {'ExtUtils::MakeMaker' => 0,},
13   MIN_PERL_VERSION   => 5.010001,
14   PREREQ_PM => {},    # e.g., Module::Name => 1.1
15   (
16    $] >= 5.005
17    ?                  ## Add these new keywords supported since 5.005
18      (
19      ABSTRACT_FROM =>
20        'lib/Umph/Prompt.pm',    # retrieve abstract from module
21      AUTHOR => 'Toni Gundogdu <legatvs at sign cpan org>'
22      )
23    : ()
24   ),
25   LICENSE => 'lgpl',
26   dist    => {
27     PREOP => '@if test -f .git/HEAD; then \
28         git log --stat --name-only --date=short --abbrev-commit >ChangeLog; \
29 fi',
30     POSTOP => '@if test -f .git/HEAD; then \
31         git checkout ChangeLog; \
32 fi',
33   },