Remove everything libpurple-related
[app-xmms2-notifier.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'App::XMMS2::Notifier',
6 VERSION_FROM => 'lib/App/XMMS2/Notifier.pm',
7 EXE_FILES => ['xmms2-notifier'],
8 ABSTRACT_FROM => 'lib/App/XMMS2/Notifier.pm',
9 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Audio::XMMSClient 0.03
15 Gtk2::Notify 0.05,
16 Getopt::Long 0/,
17 },
18 META_MERGE => {
19 dynamic_config => 0,
20 resources => {
21 repository => 'https://git.ieval.ro/?p=app-xmms2-notifier.git'
22 }
23 }
24 );
This page took 0.022599 seconds and 4 git commands to generate.