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
- Host: GitHub
- URL: https://github.com/kiwiroy/fatpack-maint-builder
- Owner: kiwiroy
- Created: 2017-11-20T09:42:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-08-26T01:17:32.000Z (almost 7 years ago)
- Last Synced: 2025-05-15T17:14:41.688Z (about 1 year ago)
- Topics: app-fatpacker, applify-example, build, eumm, perl
- Language: Perl
- Homepage:
- Size: 368 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.pod
Awesome Lists containing this project
README
=pod
=head1 NAME
fatpack-maint-build.pl - fatpack a script for distribution
=begin html
=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