Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added Makefile.
  • Loading branch information
root committed Jul 2, 2012
1 parent f92e889 commit 8d816ea
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MANIFEST
@@ -0,0 +1,4 @@
MANIFEST
Makefile.PL
README.md
terminalhero
22 changes: 22 additions & 0 deletions Makefile.PL
@@ -0,0 +1,22 @@
require 5.000;

use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile
(
NAME => 'TerminalHero',
($[ >= 5.000) ?
(AUTHOR => 'Maciej Ciemborowicz (pub@ciemborowicz.pl)',
ABSTRACT => 'Linux society\'s response to Microsoft\'s Guitar Hero. :)') : (),
VERSION => '1.0',
PREREQ_PM => {
'Term::ReadKey' => 0,
'Term::TermKey' => 0,
'POE' => 0,
'POE::Wheel::TermKey' => 0
},
EXE_FILES => [ 'terminalhero' ],
);

File renamed without changes.

0 comments on commit 8d816ea

Please sign in to comment.