1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-09-30 00:35:05 +03:00
eda-tools/kicad-patches
Werner Almesberger d280eabf70 kicad-patches: completed and extended build instructions
- README: added application of patches to KiCad build instructions
- README: added rebuild instructions for when patches change
2010-12-28 12:48:06 -03:00
..
eeschema-bom-only-mode.patch Patches to enhance KiCad, mainly for non-interactive use 2010-12-27 22:59:52 -03:00
eeschema-plot-only-mode.patch Patches to enhance KiCad, mainly for non-interactive use 2010-12-27 22:59:52 -03:00
erc-exceptions.patch Patches to enhance KiCad, mainly for non-interactive use 2010-12-27 22:59:52 -03:00
fix-pinedit-collision.patch Patches to enhance KiCad, mainly for non-interactive use 2010-12-27 22:59:52 -03:00
pcbnew-scripted.patch added pcbnew --fill-all-zones, stricter option semantics 2010-12-28 10:42:06 +00:00
README kicad-patches: completed and extended build instructions 2010-12-28 12:48:06 -03:00
series Patches to enhance KiCad, mainly for non-interactive use 2010-12-27 22:59:52 -03:00
streamline-erc.patch Patches to enhance KiCad, mainly for non-interactive use 2010-12-27 22:59:52 -03:00

First build
-----------

bzr checkout -r 2448 lp:kicad kicad.bzr
cd kicad.bzr
ln -s wherever/eda-tools/kicad-patches patches
quilt push -a
cmake .
make -j 5
make install


Rebuild with new/changed patches
--------------------------------

# update the patches
git pull

# rebuild KiCad
cd wherever/kicad.bzr
quilt pop -af
quilt push -a
cmake .
make -j 5
make install