aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: 5b875f913486d5aba3a1d5a04907908866a9aef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
use File::ShareDir::Install;

install_share dist => 'share'; 


WriteMakefile(
    NAME             => 'AdminPanel',
    AUTHOR           => q{Angelo Naselli <anaselli@linux.it> - Matteo Pasotti <matteo.pasotti@gmail.com>},
    VERSION_FROM     => 'lib/AdminPanel/MainDisplay.pm',
    ABSTRACT         => 'AdminPanel is a generic launcher application that can run perl modules or external programs using Suse YUI abstarction.',
    LICENSE          => 'GPL_2',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.006,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
	'File::ShareDir::Install' => 0,
    },
    PREREQ_PM => {
        "Moose"              => 0,
        "Config::Auto"       => 0,
        "Config::Hosts"      => 0,
        "Config::Tiny"       => 0,
        # AdminPanel::Shared::Locales
        "Locale::gettext"    => 0,
        "Text::Iconv"        => 0,
        "Date::Simple"       => 0,
        "DateTime::TimeZone" => 0,
        "Time::Piece"        => 0,
        "File::HomeDir"      => 0,
        "File::ShareDir"     => 0,
        "File::Copy"         => 0,
        "File::Remove"       => 0,
        "File::Basename"     => 0,
        "Sys::Syslog"        => 0,
        "Data::Password::Meter"    => 0,
        "Digest::MD5"        => 0,
        "IO::All"            => 0,
        #Mandriva
        "MDK::Common::File"  => 0,
        "MDK::Common::Func"  => 0,

        "Modern::Perl"       => 1.03,
        "autodie"            => 2.20,
    },
    EXE_FILES => [ qw( scripts/mpan.pl
                       scripts/manaadduser
                       scripts/manaclock
                       scripts/manahost
                       scripts/manalog
                       scripts/manaproxy
                       scripts/manaservice
                       scripts/manauser
                       modules/contribfinder.py
                       modules/rpmdragora/dragora-urpm-addmedia
                       modules/rpmdragora/dragora-urpm-sources.pl
                       ) ],
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'AdminPanel-*' },
);

package MY;
use File::ShareDir::Install 'postamble';