gnu: musescore: Fix build against Qt 5.11.
* gnu/packages/music.scm (musescore)[arguments]: Remove Webkit support, since it is replaced with Qt WebEngine in Qt 5.11. Add missing include line. [inputs]: Remove "qtwekbit".
This commit is contained in:
parent
09b21b77cc
commit
1bfde769f6
|
@ -3536,7 +3536,10 @@ audio samples and various soft sythesizers. It can receive input from a MIDI ke
|
||||||
`(#:make-flags
|
`(#:make-flags
|
||||||
`(,(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
`(,(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||||
"USE_SYSTEM_FREETYPE=ON"
|
"USE_SYSTEM_FREETYPE=ON"
|
||||||
"DOWNLOAD_SOUNDFONT=OFF")
|
"DOWNLOAD_SOUNDFONT=OFF"
|
||||||
|
;; The following is not supported since Qt 5.11. Can be
|
||||||
|
;; removed in Musescore 2.2.2+.
|
||||||
|
"BUILD_WEBKIT=OFF")
|
||||||
;; There are tests, but no simple target to run. The command
|
;; There are tests, but no simple target to run. The command
|
||||||
;; used to run them is:
|
;; used to run them is:
|
||||||
;;
|
;;
|
||||||
|
@ -3548,6 +3551,14 @@ audio samples and various soft sythesizers. It can receive input from a MIDI ke
|
||||||
#:tests? #f
|
#:tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
;; Fix Qt 5.11 upgrade. Should be fixed in 2.2.2+, see:
|
||||||
|
;; <https://github.com/musescore/MuseScore/commit/d10e70415c8e52e2ba9d45de564467e42f66c102>
|
||||||
|
(add-after 'unpack 'patch-sources
|
||||||
|
(lambda _
|
||||||
|
(substitute* "all.h"
|
||||||
|
(("#include <QRadioButton>") "#include <QRadioButton>
|
||||||
|
#include <QButtonGroup>"))
|
||||||
|
#t))
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("alsa-lib" ,alsa-lib)
|
`(("alsa-lib" ,alsa-lib)
|
||||||
|
@ -3565,7 +3576,6 @@ audio samples and various soft sythesizers. It can receive input from a MIDI ke
|
||||||
("qtdeclarative" ,qtdeclarative)
|
("qtdeclarative" ,qtdeclarative)
|
||||||
("qtscript" ,qtscript)
|
("qtscript" ,qtscript)
|
||||||
("qtsvg" ,qtsvg)
|
("qtsvg" ,qtsvg)
|
||||||
("qtwebkit" ,qtwebkit)
|
|
||||||
("qtxmlpatterns" ,qtxmlpatterns)))
|
("qtxmlpatterns" ,qtxmlpatterns)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("cmake" ,cmake)
|
`(("cmake" ,cmake)
|
||||||
|
|
Loading…
Reference in New Issue