Skip to content
Stephan Linz edited this page Nov 28, 2021 · 3 revisions

Welcome to the ESKD-kicad-environment wiki!

Some helpful notes

Found the installed KiCAD executable to create the correct symbolic links to thies eceutor wrapper script, ex. for KiCAD nightly on Debian:

dpkg -L kicad-nightly | grep '^/usr/bin/' | \
grep -Ev '(dxf2idf|idf2vrml|idfcyl|idfrect|kicad2step)' | \
awk -F/ '{ORS=" "; print $4}'

... results to (all helper tools were excluded explicitly):

bitmap2component-nightly eeschema-nightly gerbview-nightly kicad-nightly
pcb_calculator-nightly pcbnew-nightly pl_editor-nightly

Generate license text from templates with the famous Python package 'lice', found on https://github.com/licenses/lice, ex. for this Bash script:

lice --org "Li-Pro.Net (Stephan Linz)" --year 2021 --language sh mit

... or ex. for the LICENSE file (with white space elimination):

lice --org "Li-Pro.Net (Stephan Linz)" --year 2021 --language txt --file LICENSE mit && \
sed -i -e 's/^\s//g' -e 's/\s$//g' LICENSE.txt && \
mv LICENSE.txt LICENSE
Clone this wiki locally