{"id":23552650,"url":"https://github.com/kiwiroy/fatpack-maint-builder","last_synced_at":"2025-07-15T11:43:15.152Z","repository":{"id":147206256,"uuid":"111390583","full_name":"kiwiroy/fatpack-maint-builder","owner":"kiwiroy","description":"maintenance script to fatpack a script for distribution","archived":false,"fork":false,"pushed_at":"2019-08-26T01:17:32.000Z","size":377,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-15T17:14:41.688Z","etag":null,"topics":["app-fatpacker","applify-example","build","eumm","perl"],"latest_commit_sha":null,"homepage":"","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kiwiroy.png","metadata":{"files":{"readme":"README.pod","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-20T09:42:29.000Z","updated_at":"2019-08-26T01:17:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"2896eebe-ceb7-47d1-a52a-34d046dbbd06","html_url":"https://github.com/kiwiroy/fatpack-maint-builder","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/kiwiroy/fatpack-maint-builder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Ffatpack-maint-builder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Ffatpack-maint-builder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Ffatpack-maint-builder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Ffatpack-maint-builder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kiwiroy","download_url":"https://codeload.github.com/kiwiroy/fatpack-maint-builder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kiwiroy%2Ffatpack-maint-builder/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265432996,"owners_count":23764199,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["app-fatpacker","applify-example","build","eumm","perl"],"created_at":"2024-12-26T11:12:33.868Z","updated_at":"2025-07-15T11:43:15.143Z","avatar_url":"https://github.com/kiwiroy.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"=pod\n\n=head1 NAME\n\nfatpack-maint-build.pl - fatpack a script for distribution\n\n=begin html\n\n\u003ca href=\"https://travis-ci.org/kiwiroy/fatpack-maint-builder\"\u003e\n  \u003cimg src=\"https://travis-ci.org/kiwiroy/fatpack-maint-builder.svg?branch=master\"\n       alt=\"Travis Build Status\"\u003e\n\u003c/a\u003e\n\n\u003ca href=\"https://coveralls.io/github/kiwiroy/fatpack-maint-builder?branch=master\"\u003e\n  \u003cimg src=\"https://coveralls.io/repos/github/kiwiroy/fatpack-maint-builder/badge.svg?branch=master\"\n       alt=\"Coverage Status\" /\u003e\n\u003c/a\u003e\n\n\u003ca href=\"https://kritika.io/users/kiwiroy/repos/2685177578694295/heads/master/\"\u003e\n  \u003cimg src=\"https://kritika.io/users/kiwiroy/repos/2685177578694295/heads/master/status.svg\"\n       alt=\"Kritika Analysis Status\" /\u003e\n\u003c/a\u003e\n\n=end html\n\n=head1 DESCRIPTION\n\nAn easy to use script to fatpack a script. Either copy this to your repository\nC\u003cmaint\u003e directory or install and add to your C\u003ccpanfile\u003e under a feature.\n\ne.g.\n\n  on develop =\u003e sub {\n    # master\n    requires 'git@github.com:kiwiroy/fatpack-maint-builder.git';\n    # or release\n    requires 'https://github.com/kiwiroy/fatpack-maint-builder/releases/download/v1.1/FatPack-Maint-Build-1.1.tar.gz'\n  };\n\nA simple C\u003cbuild.sh\u003e will facilitate remembering how to run it.\n\ne.g.\n\n  #!/bin/sh\n\n  ./scripts/fatpack-maint-build.pl \\\n      -source ./scripts/fatpack-maint-build.pl \\\n      -target ./fatpack-maint-build.pl\n\n=head1 SYNOPSIS\n\nExamples:\n\n  fatpack-maint-build.pl -help\n\n  fatpack-maint-build.pl -source scripts/script.pl -target script.pl\n\n=head1 DETAILS\n\nThe source script should include the string C\u003c__FATPACK__\u003e within a comment on a\nline on it's own. This will be replaced by the fatpacked code.\n\nThe shebang line will be translated from C\u003c/usr/bin/env perl\u003e to\nC\u003c/usr/bin/perl\u003e for inclusion in L\u003cEUMM|ExtUtils::MakeMaker\u003e C\u003cEXE_FILES\u003e,\nwhere C\u003cfixin()\u003e will translate at C\u003cmake install\u003e time.\n\nOptionally, the string C\u003cDEVELOPERS: ...\u003e can exist within a comment in the\nsource script and will be replaced with a C\u003cDO NOT EDIT\u003e notice in the output\nfile.\n\n=head1 SEE ALSO\n\n=over 4\n\n=item L\u003cApp::FatPacker\u003e\n\n=item L\u003cApp::cpanminus\u003e\n\n=item L\u003cApplify\u003e\n\n=item L\u003cMojolicious\u003e\n\n=back\n\n\n=cut\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkiwiroy%2Ffatpack-maint-builder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkiwiroy%2Ffatpack-maint-builder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkiwiroy%2Ffatpack-maint-builder/lists"}