mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: qscintilla: Adjust installation directory layout.
* gnu/packages/qt.scm (qscintilla)[#:phase configure]: Set QT_INSTALL_DATA and QT_HOST_DATA to $OUT/lib/qt5.
This commit is contained in:
parent
4eb972b95c
commit
5430732b22
1 changed files with 4 additions and 2 deletions
|
@ -1673,8 +1673,10 @@ (define-public qscintilla
|
|||
(string-append out "/include"))
|
||||
(("\\$\\$\\[QT_INSTALL_TRANSLATIONS\\]")
|
||||
(string-append out "/translations"))
|
||||
(("\\$\\$\\[QT_INSTALL_DATA\\]") out)
|
||||
(("\\$\\$\\[QT_HOST_DATA\\]") out))
|
||||
(("\\$\\$\\[QT_INSTALL_DATA\\]")
|
||||
(string-append out "/lib/qt$${QT_MAJOR_VERSION}"))
|
||||
(("\\$\\$\\[QT_HOST_DATA\\]")
|
||||
(string-append out "/lib/qt$${QT_MAJOR_VERSION}")))
|
||||
(zero? (system* "qmake"))))))))
|
||||
(native-inputs `(("qtbase" ,qtbase)))
|
||||
(home-page "http://www.riverbankcomputing.co.uk/software/qscintilla/intro")
|
||||
|
|
Loading…
Reference in a new issue