mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
d9d0a69dec
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.
17 lines
263 B
Perl
Executable file
17 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;
|
|
}
|
|
|