mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
18 lines
263 B
Text
18 lines
263 B
Text
|
#!/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;
|
||
|
}
|
||
|
|