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
1 changed files with 6 additions and 6 deletions
|
@ -4204,12 +4204,12 @@ PDF documents.")
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(zero? (system* "qmake"
|
(invoke "qmake"
|
||||||
(string-append "PREFIX=" out)
|
(string-append "PREFIX=" out)
|
||||||
(string-append "DESKTOPDIR=" out
|
(string-append "DESKTOPDIR=" out
|
||||||
"/share/applications")
|
"/share/applications")
|
||||||
(string-append "ICONDIR=" out "/share/pixmaps")
|
(string-append "ICONDIR=" out "/share/pixmaps")
|
||||||
"texmaker.pro"))))))))
|
"texmaker.pro")))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("poppler-qt5" ,poppler-qt5)
|
`(("poppler-qt5" ,poppler-qt5)
|
||||||
("qtbase" ,qtbase)
|
("qtbase" ,qtbase)
|
||||||
|
|
Reference in a new issue