source: ProjectBuilder/projects/mondorescue/pbconf/tags/3.2.2/mindi/pbinit@ 2417

Last change on this file since 2417 was 2417, checked in by Bruno Cornec, 5 years ago

pb_cms_init does not exist anymore with pb 0.15 changed for pb_vcs_init

  • Property svn:executable set to *
File size: 766 bytes
RevLine 
[384]1#!/usr/bin/perl -w
2#
3# Init script for mondo with Project-Builder
4#
[1483]5use ProjectBuilder::VCS;
[418]6use ProjectBuilder::Filter;
7use ProjectBuilder::Env;
[384]8
[554]9my %pb;
10$pb{'pkg'} = "PBPKG";
11$pb{'ver'} = "PBVER";
12$pb{'tag'} = "PBTAG";
13$pb{'rev'} = "PBREV";
14$pb{'proj'} = "PBPROJ";
15$pb{'date'} = "PBDATE";
16$pb{'repo'} = "PBREPO";
[1442]17$pb{'extdir'} = "PBEXTDIR";
[1818]18$pb{'realpkg'} = "PBREALPKG";
[384]19
20# Export documentation to generate what is needed
21
[418]22# Action needs to be pbinit
[554]23my ($filteredfiles, $supfiles, $defpkgdir, $extpkgdir) = pb_env_init($pb{'proj'},undef,"pbinit");
[2417]24my ($scheme,$uri) = pb_vcs_init(undef);
[384]25
[1483]26pb_vcs_export($uri,"$ENV{'PBDIR'}/mondo-doc/mindi.8",".");
[384]27# should call filter_file here
28
[554]29my $ptr = pb_get_filters($pb{'pkg'});
30pb_filter_file_inplace($ptr,"mindi.8",\%pb);
Note: See TracBrowser for help on using the repository browser.