Codebase list dh-octave / 1a2a4be
dh_octave_make.in: Ignore case of field names in the DESCRIPTION file Rafael Laboissière 1 year, 10 months ago
1 changed file(s) with 4 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
128128
129129 ### Read the fields present in the DESCRIPTION file
130130 open (FID, "< DESCRIPTION");
131 /([^:]+): (.*)/ and $pkgdata{$1} = $2 while (<FID>);
131 /([^:]+): (.*)/
132 and $field = ucfirst ($1)
133 and $pkgdata{$field} = $2
134 while (<FID>);
132135 close FID;
133136
134137 ### Check for some mandatory fields