#!/usr/bin/perl
#
# This file is part of App-Magpie
#
# This software is copyright (c) 2011 by Jerome Quelin.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#

use 5.012;
use strict;
use warnings;

package magpie;
{
  $magpie::VERSION = '1.122700';
}
# ABSTRACT: Mageia Perl Integration Easy

use Find::Lib '../lib';
use App::Magpie::App;

$|++; # disabling buffered output
App::Magpie::App->run;

exit;

__END__

=pod

=head1 NAME

magpie - Mageia Perl Integration Easy

=head1 VERSION

version 1.122700

=head1 SYNOPSIS

    # for help purposes
    magpie commands
    magpie help
    magpie help subcommand

    # to really do stuff
    magpie <subcommand>

=head1 DESCRIPTION

This script is the main entry point to the Perl module L<App::Magpie>.
It provides various subcommands whose list is available with
C<magpie commands>. You can get help for each command by running
C<magpie help subcommand>.

=head1 AUTHOR

Jerome Quelin <jquelin@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Jerome Quelin.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
