~ubuntu-branches/ubuntu/precise/germinate/precise-proposed

« back to all changes in this revision

Viewing changes to debhelper/germinate.pm

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2009-08-10 23:36:23 UTC
  • Revision ID: james.westby@ubuntu.com-20090810233623-sfrf7p306y5zhw0w
Tags: 1.18
* Make germinate-update-metapackage write out a metapackage-map file,
  which is useful for later determining the set of seeds and metapackages
  to build.
* Add a debhelper addon, useful for building metapackages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/perl
 
2
# debhelper sequence file for germinate
 
3
 
 
4
use warnings;
 
5
use strict;
 
6
use Debian::Debhelper::Dh_Lib;
 
7
 
 
8
insert_before("dh_installdeb", "dh_germinate_metapackage");
 
9
insert_before("dh_clean", "dh_germinate_clean");
 
10
 
 
11
1;