]>
Commit | Line | Data |
---|---|---|
d3779104 MG |
1 | use 5.014000; |
2 | use ExtUtils::MakeMaker; | |
3 | ||
29d65ef5 MG |
4 | my $packed_nr = "\x00\x00\x00\x00\x00\xBC\x61\x4E"; |
5 | my $unpacked_nr = eval { unpack 'Q>', $packed_nr }; | |
6 | $unpacked_nr == 12345678 || die "Failed to unpack quad, this Perl does not support 64-bit integers. Bailing out. Error '$!'\n"; | |
7 | ||
d3779104 MG |
8 | WriteMakefile( |
9 | NAME => 'Slob', | |
10 | VERSION_FROM => 'lib/Slob.pm', | |
11 | ABSTRACT_FROM => 'lib/Slob.pm', | |
12 | AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>', | |
13 | MIN_PERL_VERSION => '5.14.0', | |
14 | LICENSE => 'perl', | |
15 | SIGN => 1, | |
d50f3958 | 16 | PREREQ_PM => { |
1ca60f55 MG |
17 | qw/Compress::Raw::Bzip2 0 |
18 | Compress::Raw::Lzma 0 | |
19 | Compress::Raw::Zlib 0/, | |
d50f3958 | 20 | }, |
d3779104 MG |
21 | META_ADD => { |
22 | dynamic_config => 0, | |
23 | resources => { | |
24 | repository => 'https://git.ieval.ro/?p=slob.git', | |
25 | }, | |
26 | } | |
27 | ); |