Akron | dd0aa3a | 2024-04-10 11:03:38 +0200 | [diff] [blame] | 1 | #!/usr/bin/env perl |
| 2 | use v5.16; |
| 3 | use strict; |
| 4 | use warnings; |
| 5 | use ExtUtils::MakeMaker; |
| 6 | |
| 7 | WriteMakefile( |
| 8 | NAME => 'cosmasvc2koralquery', |
| 9 | AUTHOR => 'Nils DIewald', |
| 10 | ABSTRACT => 'Conversion of Cosmas 2 VC files to KoralQuery', |
| 11 | VERSION_FROM => 'script/cosmasvc2koralquery', |
| 12 | LICENSE => 'freebsd', |
| 13 | BUILD_REQUIRES => { |
| 14 | 'Test::More' => 0, |
| 15 | 'Test::Output' => 0, |
| 16 | 'File::Basename' => 0, |
| 17 | 'Data::Dumper' => 0, |
| 18 | 'File::Spec::Functions' => 0, |
| 19 | 'Mojolicious' => 0, |
| 20 | }, |
| 21 | MIN_PERL_VERSION => '5.016', |
| 22 | EXE_FILES => ['script/cosmasvc2koralquery'], |
| 23 | META_MERGE => { |
| 24 | 'meta-spec' => { version => 2 }, |
| 25 | requires => { perl => '5.010001' }, |
| 26 | resources => { |
| 27 | license => 'https://opensource.org/licenses/BSD-2-Clause', |
| 28 | } |
| 29 | } |
| 30 | ); |