Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhthorsen/app-implode
Pack an application into a single runable file
https://github.com/jhthorsen/app-implode
Last synced: 27 days ago
JSON representation
Pack an application into a single runable file
- Host: GitHub
- URL: https://github.com/jhthorsen/app-implode
- Owner: jhthorsen
- Created: 2014-11-14T17:54:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-06-24T08:28:21.000Z (over 7 years ago)
- Last Synced: 2024-10-16T11:58:42.570Z (3 months ago)
- Language: Perl
- Size: 31.3 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
Awesome Lists containing this project
README
NAME
App::Implode - Pack an application into a single runable fileVERSION
0.03DESCRIPTION
App::Implode is an alternative to App::FatPacker and App::depak. It
works by using Carton to build all the dependencies and then bundle all
the deps to a single executable file.It is very important that all the dependencies are documented in a
cpanfile. Example "cpanfile":requires "perl" => "5.12.0";
requires "Mojolicious" => "5.00";SYNOPSIS
Generetor
$ cd my-project
$ implode myapp.pl out.plConsumer
It is possible to set environment variables on the consumer side to
instruct how the code will be "exploded".$ out.pl
$ APP_EXPLODE_VERBOSE=1 out.pl
$ APP_EXPLODE_DIR=/extract/files/here out.pl* APP_EXPLODE_VERBOSE
Set this to a true value to get debug output.
* APP_EXPLODE_DIR
The default is to put the extracted files in a default tmpdir. A
custom "APP_EXPLODE_DIR" can be specified if to override that
behavior.CAVEAT
App::Implode will put all the requirements into an bzip2'ed archive, and
write it into the generated file, in the "__END__" section. This means
that you cannot use this section in the source script.COPYRIGHT AND LICENSE
Copyright (C) 2014, Jan Henning ThorsenThis program is free software, you can redistribute it and/or modify it
under the terms of the Artistic License version 2.0.AUTHOR
Jan Henning Thorsen - "[email protected]"