Perl-Dist-WiX

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

share-5123/default/win32/makefile.mk.tt
share/ClearFolderCA.dll
share/cpan.ico
share/default/DISTRIBUTIONS.txt.tt
share/default/Main.wxs.tt
share/default/Merge-Module.documentation.html.tt
share/default/Merge-Module.wxs.tt
share/default/perl/lib/CPANPLUS/Config.pm.tt
share/default/UI_MyInstall.wxs.fragment
share/default/UI_MyInstallDir.wxs.fragment
share/distroprefs/ace.yml
share/distroprefs/AcePerl-1.92.patch
share/distroprefs/bio-perl.yml
share/distroprefs/BioPerl-1.6.1.patch
share/distroprefs/cpan-disabled.yml
share/distroprefs/Crypt-IDEA-1.08.patch
share/distroprefs/crypt-idea.yml
share/distroprefs/Crypt-SSLeay-0.57.patch
share/distroprefs/crypt-ssleay.yml
share/distroprefs/Devel-REPL-1.003011.patch
share/distroprefs/devel-repl.yml
share/distroprefs/Task-Catalyst-4.00.patch
share/distroprefs/task-catalyst.yml
share/distroprefs/Task-Kensho-0.22.patch
share/distroprefs/task-kensho.yml
share/growl-icon.png
share/License.rtf
share/perldoc.ico
share/portable.perl
share/portable/portable.perl
share/portable/portableshell.bat
share/portable/README.portable.TXT
share/relocation.pl.bat
share/update_env.pl.bat
share/win32.ico

lib/Perl/Dist/WiX/Asset/Module.pm  view on Meta::CPAN


	# Verify the existence of perl.
	if ( not $self->_get_bin_perl() ) {
		PDWiX->throw(
			'Cannot install CPAN modules yet, perl is not installed');
	}

	# Generate the CPAN installation script.
	my $dist_file = catfile( $self->_get_output_dir(), 'cpan_distro.txt' );
	my $url       = $self->_get_cpan()->as_string();
	my $dp_dir    = catdir( $self->_get_wix_dist_dir(), 'distroprefs' );
	my $internet_available = ( $url =~ m{ \A file://}msx ) ? 1 : 0;
	my $cpan_string        = <<"END_PERL";
print "Loading CPAN...\\n";
use CPAN 1.9600;
CPAN::HandleConfig->load unless \$CPAN::Config_loaded++;
\$CPAN::Config->{'urllist'} = [ '$url' ];
\$CPAN::Config->{'use_sqlite'} = q[$use_sqlite];
\$CPAN::Config->{'prefs_dir'} = q[$dp_dir];
\$CPAN::Config->{'patches_dir'} = q[$dp_dir];
\$CPAN::Config->{'prerequisites_policy'} = q[ignore];
\$CPAN::Config->{'connect_to_internet_ok'} = q[$internet_available];
\$CPAN::Config->{'ftp'} = q[];
if ($vendor) {
	\$CPAN::Config->{'makepl_arg'} = q[INSTALLDIRS=vendor];
	\$CPAN::Config->{'make_install_arg'} = q[INSTALLDIRS=vendor];
	\$CPAN::Config->{'mbuildpl_arg'} = q[--installdirs vendor];
	\$CPAN::Config->{'mbuild_install_arg'} = q[--installdirs vendor];
}

lib/Perl/Dist/WiX/Repository.pod  view on Meta::CPAN


Continuing to increase the 'pluggability' the supported versions of Perl pluggable. This way, the 
C<Perl::Dist::WiX> distribution itself is smaller.

=item 2.

5.14.0 support (when it comes out).

=item 3.

Making what distroprefs we have inheritable (probably by making a 
subdirectory of the build directory to copy them into.)

=item 4.

Being able to have a "feature tree".

=back

=head2 maint-May2011 (May 2011 maintenance branch.)

share/portable.perl  view on Meta::CPAN

---
CPAN:
  build_dir: cpan/build
  cpan_home: cpan
  ftp: ''
  histfile: cpan/histfile
  keep_source_where: cpan/sources
  make: c/bin/dmake.exe
  makepl_arg: ''
  patch: c/bin/patch.exe
  prefs_dir: cpan/prefs
minicpan:
  local: minicpan
  remote: http://cpan.strawberryperl.com/
  force: 1
  skip_perl: 1
  no_conn_cache: 1
HomeDir:
  my_home: data
  my_data: data
Config:

share/portable/portable.perl  view on Meta::CPAN

---
CPAN:
  build_dir: cpan/build
  cpan_home: cpan
  ftp: ''
  histfile: cpan/histfile
  keep_source_where: cpan/sources
  make: c/bin/dmake.exe
  makepl_arg: ''
  patch: c/bin/patch.exe
  prefs_dir: cpan/prefs
minicpan:
  local: minicpan
  remote: http://cpan.strawberryperl.com/
  force: 1
  skip_perl: 1
  no_conn_cache: 1
HomeDir:
  my_home: data
  my_data: data
Config:



( run in 0.916 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )