diff --git a/debian/control b/debian/control index 9fc48e0d..1ac19692 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,7 @@ X-Python3-Version: >= 3.2 Package: kiplot.inti-cmnb Architecture: all Multi-Arch: foreign -Depends: ${misc:Depends}, ${python3:Depends}, python3-yaml, kicad (>= 5.1.0), python3-wxgtk4.0 +Depends: ${misc:Depends}, ${python3:Depends}, python3-yaml, kicad (>= 5.1.0), python3-wxgtk4.0, python3-mcpy Recommends: kibom.inti-cmnb, kicad-automation-scripts.inti-cmnb (>= 1.1.2), interactivehtmlbom.inti-cmnb, pcbdraw Description: KiCad Plotter (KiPlot) KiPlot is a program which helps you to plot your KiCad PCBs to output diff --git a/debian/postinst b/debian/postinst new file mode 100755 index 00000000..c1d5740c --- /dev/null +++ b/debian/postinst @@ -0,0 +1,13 @@ +#!/bin/sh +set -e + +# Disabled because macros will fail. +# Automatically added by dh_python3: +#if which py3compile >/dev/null 2>&1; then +# py3compile -p kiplot.inti-cmnb -V 3.2- +#fi +#if which pypy3compile >/dev/null 2>&1; then +# pypy3compile -p kiplot.inti-cmnb -V 3.2- || true +#fi + +# End automatically added section