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, |
Akron | b31321e | 2024-07-18 11:17:46 +0200 | [diff] [blame^] | 17 | 'File::Temp' => 0, |
Akron | dd0aa3a | 2024-04-10 11:03:38 +0200 | [diff] [blame] | 18 | 'Data::Dumper' => 0, |
| 19 | 'File::Spec::Functions' => 0, |
| 20 | 'Mojolicious' => 0, |
Akron | b31321e | 2024-07-18 11:17:46 +0200 | [diff] [blame^] | 21 | 'IO::Uncompress::Bunzip2' => 0, |
Akron | dd0aa3a | 2024-04-10 11:03:38 +0200 | [diff] [blame] | 22 | }, |
| 23 | MIN_PERL_VERSION => '5.016', |
| 24 | EXE_FILES => ['script/cosmasvc2koralquery'], |
| 25 | META_MERGE => { |
| 26 | 'meta-spec' => { version => 2 }, |
| 27 | requires => { perl => '5.010001' }, |
| 28 | resources => { |
| 29 | license => 'https://opensource.org/licenses/BSD-2-Clause', |
| 30 | } |
| 31 | } |
| 32 | ); |