An open API service indexing awesome lists of open source software.

https://github.com/kiwiroy/fatpack-maint-builder

maintenance script to fatpack a script for distribution
https://github.com/kiwiroy/fatpack-maint-builder

app-fatpacker applify-example build eumm perl

Last synced: 11 months ago
JSON representation

maintenance script to fatpack a script for distribution

Awesome Lists containing this project

README

          

=pod

=head1 NAME

fatpack-maint-build.pl - fatpack a script for distribution

=begin html


Travis Build Status


Coverage Status


Kritika Analysis Status

=end html

=head1 DESCRIPTION

An easy to use script to fatpack a script. Either copy this to your repository
C directory or install and add to your C under a feature.

e.g.

on develop => sub {
# master
requires 'git@github.com:kiwiroy/fatpack-maint-builder.git';
# or release
requires 'https://github.com/kiwiroy/fatpack-maint-builder/releases/download/v1.1/FatPack-Maint-Build-1.1.tar.gz'
};

A simple C will facilitate remembering how to run it.

e.g.

#!/bin/sh

./scripts/fatpack-maint-build.pl \
-source ./scripts/fatpack-maint-build.pl \
-target ./fatpack-maint-build.pl

=head1 SYNOPSIS

Examples:

fatpack-maint-build.pl -help

fatpack-maint-build.pl -source scripts/script.pl -target script.pl

=head1 DETAILS

The source script should include the string C<__FATPACK__> within a comment on a
line on it's own. This will be replaced by the fatpacked code.

The shebang line will be translated from C to
C for inclusion in L C,
where C will translate at C time.

Optionally, the string C can exist within a comment in the
source script and will be replaced with a C notice in the output
file.

=head1 SEE ALSO

=over 4

=item L

=item L

=item L

=item L

=back

=cut