gstreamer/debian/mk.control
David Schleef 91b9c6c9c6 gstreamer-gconf.files: libgstgconf.so moved to /usr/lib added control.in, build-deps, and mk.control script. Edit co...
Original commit message from CVS:
* gstreamer-gconf.files: libgstgconf.so moved to /usr/lib
* added control.in, build-deps, and mk.control script.  Edit control.in
and/or build-deps, and run 'debian/rules debian/control' from toplevel
directory to recreate debian/control.  This should make it a lot
easier to diff build dependencies.
2002-09-20 04:02:59 +00:00

18 lines
263 B
Perl
Executable file

#!/usr/bin/perl -w
open BUILDDEPS, "debian/build-deps";
@builddeplist = <BUILDDEPS>;
close BUILDDEPS;
chomp(@builddeplist);
$builddeps = join(", ", @builddeplist);
open CONTROLIN, "debian/control.in";
while(<CONTROLIN>){
s/BUILDDEPS/$builddeps/;
print;
}