From d280eabf700f28949537a75cb6e94e55bb0e6aa7 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Tue, 28 Dec 2010 12:48:06 -0300 Subject: [PATCH] kicad-patches: completed and extended build instructions - README: added application of patches to KiCad build instructions - README: added rebuild instructions for when patches change --- kicad-patches/README | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/kicad-patches/README b/kicad-patches/README index 5e7a86c..b051df6 100644 --- a/kicad-patches/README +++ b/kicad-patches/README @@ -1,5 +1,25 @@ +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