gnu: kicad-library: Return #t from phases.
* gnu/packages/engineering.scm (kicad-library)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
7d0370ede4
commit
6c08ea6a5c
|
@ -717,11 +717,11 @@ electrical diagrams), gerbview (viewing Gerber files) and others.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'install 'install-footprints ; from footprints tarball
|
(add-after 'install 'install-footprints ; from footprints tarball
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(zero? (system* "tar" "xvf"
|
(invoke "tar" "xvf"
|
||||||
(assoc-ref inputs "kicad-footprints")
|
(assoc-ref inputs "kicad-footprints")
|
||||||
"-C" (string-append (assoc-ref outputs "out")
|
"-C" (string-append (assoc-ref outputs "out")
|
||||||
"/share/kicad/modules")
|
"/share/kicad/modules")
|
||||||
"--strip-components=1"))))
|
"--strip-components=1")))
|
||||||
;; We change the default global footprint file, which is generated if
|
;; We change the default global footprint file, which is generated if
|
||||||
;; it doesn't exist in user's home directory, from the one using the
|
;; it doesn't exist in user's home directory, from the one using the
|
||||||
;; github plugin, to the one using the KISYSMOD environment path.
|
;; github plugin, to the one using the KISYSMOD environment path.
|
||||||
|
|
Loading…
Reference in New Issue