mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
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 @@ (define-public texmaker
|
|||
(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 a new issue