File: README

package info (click to toggle)
libapp-packager-perl 1.430.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 84 kB
  • sloc: perl: 161; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 584 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
App-Packager
============

App::Packager provides an abstract interface to a number of common
packagers, trying to catch as much common behaviour as possible.

The main purpose is to have uniform access to application specific
resources.

Supported packagers are PAR::Packer, Cava::Packager and unpackaged. In the
latter case, the packager functions are emulated via Cava::Packager which
provides fallback for unpackaged use.

For example:

    use App::Packager qw( :name My::App );
    print "My packager is: ", App::Packager::Packager(), "\n";
    print getresource("README.txt");