t* my version of playonbsd.com data
       
   URI git clone git://git.codevoid.de/playonbsd-sdk.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
       tMakefile.PL (801B)
       ---
            1 use strict;
            2 use warnings;
            3 use ExtUtils::MakeMaker;
            4 
            5 # Normalize version strings like 6.30_02 to 6.3002,
            6 # so that we can do numerical comparisons on it.
            7 my $eumm_version = $ExtUtils::MakeMaker::VERSION;
            8 $eumm_version =~ s/_//;
            9 
           10 WriteMakefile(
           11     NAME                => 'PlayOnBSD',
           12     AUTHOR              => q{sdk <sh+playonbsd[at]codevoid.de>},
           13     VERSION_FROM        => 'lib/PlayOnBSD.pm',
           14     ABSTRACT            => 'The OpenBSD Gaming Community',
           15     ($eumm_version >= 6.3001
           16       ? ('LICENSE'=> 'perl')
           17       : ()),
           18     PL_FILES            => {},
           19     PREREQ_PM => {
           20         'Test::More' => 0,
           21         'YAML'       => 0,
           22         'Dancer2'     => 0.300000,
           23     },
           24     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
           25     clean               => { FILES => 'PlayOnBSD-*' },
           26 );