Archived
1
0
Fork 0

gnu: librecad: Build with qt-build-system.

* gnu/packages/engineering.scm (librecad)[build-system]: Switch to
qt-build-system.
[arguments]: Add test-target. Remove custom 'wrap-executable phase.
This commit is contained in:
Efraim Flashner 2021-10-04 09:01:22 +03:00
parent 26f1c93982
commit 4992cd7c4e
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -144,9 +144,10 @@
(sha256
(base32
"08cl4935c9vznz9qdw1zgd86rn7hl64zpfayxl07x21bhf53pn24"))))
(build-system gnu-build-system)
(build-system qt-build-system)
(arguments
'(#:phases
'(#:test-target "check"
#:phases
(modify-phases %standard-phases
;; Without this patch boost complains that "make_array" is not a
;; member of "boost::serialization".
@ -186,19 +187,7 @@
(install-file "unix/librecad" bin)
(mkdir-p share)
(copy-recursively "unix/resources" share))
#t))
;; Ensure that icons are found at runtime
(add-after 'install 'wrap-executable
(lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(qt '("qtbase" "qtsvg")))
(wrap-program (string-append out "/bin/librecad")
`("QT_PLUGIN_PATH" ":" prefix
,(map (lambda (label)
(string-append (assoc-ref inputs label)
"/lib/qt5/plugins/"))
qt)))
#t))))))
#t)))))
(inputs
`(("boost" ,boost)
("muparser" ,muparser)