Changeset 496
- Timestamp:
- 10/26/08 07:57:20 (3 years ago)
- Location:
- plugins/par
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/par/Changes
r492 r496 1 v0.03 2008.10.261 0.03 2008-10-26 2 2 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. 4 5 5 v0.02 2008.08.176 0.02 2008-08-17 6 7 7 Follow the API changes of Padre 0.058 - Follow the API changes of Padre 0.05 8 9 9 v0.01 2008.08.0310 0.01 2008-08-03 10 11 11 Initial, experimental version released.12 - Initial, experimental version released. 12 13 -
plugins/par/README
r2 r496 3 3 A plugin for Padre to create PAR archives or 4 4 stand alone executable from within the editor. 5 6 5 7 6 Installation should be done with the standard installation tools … … 12 11 Install Padre::Plugin::PAR 13 12 13 ----------------------------------------------------------------------- 14 If you decide to install the plugin manually, you can do the following 15 instead of installing the module into a normal Perl library path: 16 17 - Install the prerequisite modules. 18 19 - Run: 20 21 perl Build.PL 22 ./Build 23 24 - To install the plugin as a single binary for the current user, run: 25 26 ./Build installplugin 27 28 This will install the plugin as PAR.par into your user's ~/.padre/plugins 29 directory. 30 31 Similarly, "./Build plugin" will just create the PAR.par which you can 32 then copy manually. 33 -
plugins/par/lib/Padre/Plugin/PAR.pm
r492 r496 16 16 17 17 This is an experimental version of the plugin using the experimental 18 plugin interface of Padre 0.12_01 18 plugin interface of Padre 0.12_01. 19 19 20 After installation there should be a menu item Padre - PAR - Stand Alone20 After installation there should be a menu item I<Padre - PAR - Stand Alone> 21 21 22 22 Clicking on that menu item while a .pl file is in view will generate a stand alone 23 23 executable with .exe extension next to the .pl file. 24 25 If you are currently editing an unsaved buffer, it will be saved to a temporary 26 file for you. 24 27 25 28 =cut … … 88 91 } 89 92 93 1; 94 95 __END__ 96 97 =head1 INSTALLATION 98 99 You can install this module like any other Perl module and it will 100 become available in your Padre editor. However, you can also 101 choose to install it into your user's Padre configuration directory only. 102 The necessary steps are outlined in the C<README> file in this distribution. 103 Essentially, you do C<perl Build.PL> and C<./Build installplugin>. 104 90 105 =head1 COPYRIGHT 91 106 … … 104 119 105 120 =cut 106 107 1;
Note: See TracChangeset
for help on using the changeset viewer.
