gnu: texmaker: Use invoke.
* gnu/packages/tex.scm (texmaker)[arguments]: Use invoke in the custom configure phase.
This commit is contained in:
parent
3730a10786
commit
6c23ed9b58
|
@ -4204,12 +4204,12 @@ PDF documents.")
|
|||
(replace 'configure
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(zero? (system* "qmake"
|
||||
(string-append "PREFIX=" out)
|
||||
(string-append "DESKTOPDIR=" out
|
||||
"/share/applications")
|
||||
(string-append "ICONDIR=" out "/share/pixmaps")
|
||||
"texmaker.pro"))))))))
|
||||
(invoke "qmake"
|
||||
(string-append "PREFIX=" out)
|
||||
(string-append "DESKTOPDIR=" out
|
||||
"/share/applications")
|
||||
(string-append "ICONDIR=" out "/share/pixmaps")
|
||||
"texmaker.pro")))))))
|
||||
(inputs
|
||||
`(("poppler-qt5" ,poppler-qt5)
|
||||
("qtbase" ,qtbase)
|
||||
|
|
Loading…
Reference in New Issue