#!/usr/bin/perl

# pdflink -- insert links into PDF files

# Author          : Johan Vromans
# Created On      : Thu Sep 15 11:43:40 2016
# Last Modified By: Johan Vromans
# Last Modified On: Wed Nov  8 19:46:23 2017
# Update Count    : 257
# Status          : Unknown, Use with caution!

################ Common stuff ################

use strict;
use warnings;

# The FindBin stuff is only used when running in-place.
# use FindBin;
# use lib "$FindBin::Bin/../CPAN";
# use lib "$FindBin::Bin/../lib";

# App::Packager is only used when running packaged.
# use App::Packager;

use App::PDF::Link;

=head1 NAME

pdflink - insert document links in PDF documents

=head1 DESCRIPTION

B<pdflink> can read and rewrite PDF documents while adding links to
other documents at specified pages.

B<pdflink> is a wrapper around L<App::PDF::Link>, which does all
of the work.

=cut

################ Setup  ################

# Process command line options, config files, and such.
my $env = App::PDF::Link->app_setup( "pdflink", $App::PDF::Link::VERSION );

################ Activate ################

App::PDF::Link->run($env);

1;
