DBIx-Perform

 view release on metacpan or  search on metacpan

INSTALL  view on Meta::CPAN

$ORIGIN//libncurses.sl and similar.  The default way would produce something
like /usr/local/lib/libncurses.sl.  Now install these 2 modules.

Next, there is a bug in PAR that prevents added libraries from being run.
They are unpacked into a /tmp/par-username/cache-xxx directory without
execute permission.  So, must change PAR-0.976/lib/PAR.pm.  After line
884 (which says "$par_temp = $1;"), add the following, then rebuild and
reinstall PAR:

        foreach my $i (<$par_temp/lib*.sl>) {
            chmod 0755, $i;
        }


Then issue the following command to build the PAR standalone executable:

$ pp -z 9 -l /libncurses.sl -l /libpanel.sl -l /libmenu.sl -l /libform.sl -l /libifglx.sl -l /libifgls.sl -l /libifgen.sl -l /libifasf.sl -l /libifos.sl -l /libifsql.sl -M Curses/Widgets/Label.pm -M Perform/Widgets/TextField.pm bin/perform



=========================================================================



( run in 0.295 second using v1.01-cache-2.11-cpan-496ff517765 )