1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-06-28 22:51:06 +03:00
eda-tools/boom/mbq2lst

30 lines
475 B
Perl
Executable File

#!/usr/bin/perl
#
# Format:
#
# number comp_ref_category footprint value ...
#
print "eeschema (whatever) >> some date\n\n";
print "#Cmp ( order = Reference )\n";
while (<>) {
last if /^#END\b/;
s/#.*//;
next if /^\s*$/;
@a = split(/\s+/, $_);
$n = shift @a;
$cref = shift @a;
$fp = shift @a;
$value = shift @a;
for ($i = 0; $i != $n; $i++) {
$p++;
print "| $cref$p\t$value\t; $fp\t";
for (@a) {
print "; $_\t";
}
print "\n";
}
}
print "#End Cmp\n";