#!/usr/bin/perl

use strict;
use warnings;
use App::palien;

# ABSTRACT: Command line interface to Alien::Base
# PODNAME: palien
our $VERSION = '0.02'; # VERSION


exit App::palien->main(@ARGV);

__END__

=pod

=encoding UTF-8

=head1 NAME

palien - Command line interface to Alien::Base

=head1 VERSION

version 0.02

=head1 SYNOPSIS

 % palien --cflags libfoo
 % palien --cflags Alien::Foo
 % palien --libs libfoo
 % palien --libs Alien::Foo

=head1 DESCRIPTION

This program provides a command line interface to the data stored in
Alien modules.  It is geared primarily for use with Alien::Base based
distributions, but it will attempt to work with non-Alien::Base based
Alien distributions as well.

=head1 OPTIONS

=head2 --cflags

Print out the compiler flags for the compiler

=head2 --detail | -d

Print out details for each package specified

=head2 --dll

Print out the DLLs, one per line

=head2 --libs

Print out the library flags for the linker

=head2 --modversion

Print out the package version.

=head2 --help | -h

Print out the usage for this command

=head2 --version

Print out the version of this command

=head1 AUTHOR

Graham Ollis <plicease@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by Graham Ollis.

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
