Changeset 496


Ignore:
Timestamp:
10/26/08 07:57:20 (3 years ago)
Author:
tsee
Message:

document new Build targets and installation, update Changes

Location:
plugins/par
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • plugins/par/Changes

    r492 r496  
    1 v0.03 2008.10.26 
     10.03 2008-10-26 
    22 
    3 Follow the API changes of Padre 0.12_01 
     3  - Follow the API changes of Padre 0.12_01 
     4  - Add the "plugin" and "installplugin" ./Build targets. 
    45 
    5 v0.02 2008.08.17 
     60.02 2008-08-17 
    67 
    7 Follow the API changes of Padre 0.05 
     8  - Follow the API changes of Padre 0.05 
    89 
    9 v0.01 2008.08.03 
     100.01  2008-08-03 
    1011 
    11 Initial, experimental version released. 
     12  - Initial, experimental version released. 
    1213 
  • plugins/par/README

    r2 r496  
    33A plugin for Padre to create PAR archives or  
    44stand alone executable from within the editor. 
    5  
    65 
    76Installation should be done with the standard installation tools 
     
    1211Install Padre::Plugin::PAR 
    1312 
     13----------------------------------------------------------------------- 
     14If you decide to install the plugin manually, you can do the following 
     15instead of installing the module into a normal Perl library path: 
     16 
     17- Install the prerequisite modules. 
     18 
     19- Run: 
     20 
     21perl Build.PL 
     22./Build 
     23 
     24- To install the plugin as a single binary for the current user, run: 
     25 
     26./Build installplugin 
     27 
     28This will install the plugin as PAR.par into your user's ~/.padre/plugins 
     29directory. 
     30 
     31Similarly, "./Build plugin" will just create the PAR.par which you can 
     32then copy manually. 
     33 
  • plugins/par/lib/Padre/Plugin/PAR.pm

    r492 r496  
    1616 
    1717This is an experimental version of the plugin using the experimental 
    18 plugin interface of Padre 0.12_01 
     18plugin interface of Padre 0.12_01. 
    1919 
    20 After installation there should be a menu item Padre - PAR - Stand Alone 
     20After installation there should be a menu item I<Padre - PAR - Stand Alone> 
    2121 
    2222Clicking on that menu item while a .pl file is in view will generate a stand alone 
    2323executable with .exe extension next to the .pl file. 
     24 
     25If you are currently editing an unsaved buffer, it will be saved to a temporary 
     26file for you. 
    2427 
    2528=cut 
     
    8891} 
    8992 
     931; 
     94 
     95__END__ 
     96 
     97=head1 INSTALLATION 
     98 
     99You can install this module like any other Perl module and it will 
     100become available in your Padre editor. However, you can also 
     101choose to install it into your user's Padre configuration directory only. 
     102The necessary steps are outlined in the C<README> file in this distribution. 
     103Essentially, you do C<perl Build.PL> and C<./Build installplugin>. 
     104 
    90105=head1 COPYRIGHT 
    91106 
     
    104119 
    105120=cut 
    106  
    107 1; 
Note: See TracChangeset for help on using the changeset viewer.