3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: texmaker: Use invoke.

* gnu/packages/tex.scm (texmaker)[arguments]: Use invoke in the custom
configure phase.
This commit is contained in:
Mark H Weaver 2018-03-23 04:14:33 -04:00
parent 3730a10786
commit 6c23ed9b58
No known key found for this signature in database
GPG key ID: 7CEF29847562C516

View file

@ -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)