| 138 | | 1) For Active Perl there are prebuilt PPM versions of Alien::wxWidgets and Wx (aka. wxPerl) |
| 139 | | and can be installed from [http://wxperl.co.uk/] so |
| 140 | | Add the wxperl repository to the PPM: http://www.wxperl.co.uk/repository |
| 141 | | (for detailed instructions see http://wxperl.co.uk/ppm.html ) |
| 142 | | ( and even more info here http://docs.activestate.com/activeperl/5.10/faq/ActivePerl-faq2.html ) |
| | 138 | 1) (A) Most of the modules - can be taken from the main ActiveState Package Repository. |
| | 139 | |
| | 140 | (B) For Active Perl there are prebuilt PPM versions of Alien::wxWidgets and Wx (aka. wxPerl) |
| | 141 | and can be installed from [http://wxperl.co.uk/]. |
| | 142 | |
| | 143 | So add the wxperl repository to the PPM: http://www.wxperl.co.uk/repository |
| | 144 | (for detailed instructions see http://wxperl.co.uk/ppm.html ) |
| | 145 | (and even more info here http://docs.activestate.com/activeperl/5.10/faq/ActivePerl-faq2.html ) |
| | 146 | |
| | 147 | Adding the repository to your PPM repository list: |
| | 148 | In PPM4 (ActivePerl 820+) this is most easily done via the GUI menu option: Edit -> Preferences. |
| | 149 | |
| | 150 | If you use PPM3 - or used to command line (==DOS , still usable for PPM4) - you can do: |
| | 151 | {{{ |
| | 152 | ppm rep add wxperl http://www.wxperl.co.uk/repository |
| | 153 | }}} |
| | 154 | |
| | 155 | (C) For Module-Starter Version: 1.50 - the trouchelle.com repo should be added the following way |
| | 156 | (DOS command line): |
| | 157 | {{{ |
| | 158 | ppm rep add trouchelle.com http://trouchelle.com/ppm10/ |
| | 159 | }}} |
| | 160 | |
| | 161 | |
| 145 | | http://svn.perlide.org/padre/trunk/Padre/Makefile.PL |
| 146 | | using ppm. |
| 147 | | Don't worry about the order of installation and report us any problem you encounter. |
| | 164 | http://svn.perlide.org/padre/trunk/Padre/Makefile.PL - by using ppm. |
| | 165 | Don't worry about the order of installation and report us any problem you encounter. |
| | 166 | |
| | 167 | You can do in by searching the "requires" packages listed in the above link - |
| | 168 | either by using the PPM4 GUI, or searching PPM command line (==DOS): |
| | 169 | {{{ |
| | 170 | ppm search App::Ack |
| | 171 | }}} |
| | 172 | The result may look like this: |
| | 173 | {{{ |
| | 174 | C:\Documents and Settings\orenm>ppm search App::Ack |
| | 175 | Downloading ActiveState Package Repository packlist...not modified |
| | 176 | 1: ack |
| | 177 | A grep-like program specifically for large source trees |
| | 178 | Version: 1.86 |
| | 179 | Released: 2008-07-09 |
| | 180 | Author: Andy Lester <andy@petdance.com> |
| | 181 | Provide: App::Ack version 1.86 |
| | 182 | Require: File::Basename |
| | 183 | Require: File::Next version 0.4 or better |
| | 184 | Require: Getopt::Long |
| | 185 | Require: Term::ANSIColor |
| | 186 | Require: Test::Harness version 2.5 or better |
| | 187 | Require: Test::More |
| | 188 | Repo: ActiveState Package Repository |
| | 189 | CPAN: http://search.cpan.org/dist/ack-1.86/ |
| | 190 | |
| | 191 | C:\Documents and Settings\orenm> |
| | 192 | }}} |
| | 193 | So now you shall do: |
| | 194 | {{{ |
| | 195 | ppm install ack |
| | 196 | }}} |
| | 197 | |