Changeset 10394
- Timestamp:
- 01/30/10 19:34:17 (2 years ago)
- Location:
- trunk/Perl-Dist-Padre
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
lib/Perl/Dist/Padre.pm (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Perl-Dist-Padre
- Property svn:ignore
-
old new 1 1 *.gz 2 2 *.html 3 Build 4 Build.bat 3 5 LICENSE 4 6 MANIFEST 5 7 META.yml 8 MYMETA.yml 6 9 Makefile 7 10 Makefile.old
-
- Property svn:ignore
-
trunk/Perl-Dist-Padre/lib/Perl/Dist/Padre.pm
r10356 r10394 5 5 use strict; 6 6 use warnings; 7 use Perl::Dist::WiX 1.102002 7 use Perl::Dist::WiX 1.102002; 8 8 use Perl::Dist::Strawberry 2.02 qw(); 9 9 use URI::file qw(); … … 57 57 58 58 # These are the locations to pull down the msm. 59 msm_to_use => 'http://strawberryperl.com/download/strawberry-msm/strawberry-perl-5.10.1.1.msm' 59 msm_to_use => 'http://strawberryperl.com/download/strawberry-msm/strawberry-perl-5.10.1.1.msm', 60 60 msm_zip => 'http://strawberryperl.com/download/strawberry-perl-5.10.1.1.zip', 61 61 msm_code => '12345678-1111-122345678-1111-1111-1111', … … 179 179 # These were new between 0.50 and 0.55 180 180 $self->install_modules( qw{ 181 Module::ScanDeps 182 Module::Install 181 183 Format::Human::Bytes 182 184 Template::Tiny … … 235 237 236 238 # Get the Id for directory object that stores the filename passed in. 237 my $dir_id = $self-> directories()->search_dir(239 my $dir_id = $self->get_directory_tree()->search_dir( 238 240 path_to_find => catdir( $self->image_dir(), 'perl', 'bin' ), 239 241 exact => 1, … … 242 244 243 245 my $icon_id = 244 $self-> icons()246 $self->_icons() 245 247 ->add_icon( catfile( $self->dist_dir(), 'padre.ico' ), 'padre.exe' ); 246 248 247 249 # Add the start menu icon. 248 $self-> {fragments}->{StartMenuIcons}->add_shortcut(250 $self->get_fragment_object('StartMenuIcons')->add_shortcut( 249 251 name => 'Padre', 250 252 description => … … 277 279 } ## end sub dist_dir 278 280 279 280 281 281 1; # Magic true value required at end of module 282 282 … … 287 287 =begin readme text 288 288 289 Perl::Dist::Padre version 0.5 00289 Perl::Dist::Padre version 0.560 290 290 291 291 =end readme … … 368 368 Dependencies of this module that are non-core in perl 5.8.1 (which is the 369 369 minimum version of Perl required) include 370 L<Perl::Dist::Strawberry|Perl::Dist::Strawberry> version 2.0 1, and371 L<URI::file|URI::file> .370 L<Perl::Dist::Strawberry|Perl::Dist::Strawberry> version 2.02, 371 L<URI::file|URI::file>, and L<parent|parent>. 372 372 373 373 =for readme stop
Note: See TracChangeset
for help on using the changeset viewer.
