gnu: supercollider: Remove broken Qt dependency.
As suggested by Ricardo Wurmus. This also removes IDE support. * gnu/packages/audio.scm (supercollider)[arguments]: Add "-DSC_QT=off" to configure flags. [native-inputs]: Remove QTTOOLS. [inputs]: Remove QTBASE, QTWEBKIT, QTSENSORS, QTDECLARATIVE and QTLOCATION.
This commit is contained in:
parent
c7d901c130
commit
77cc8778a3
|
@ -12,6 +12,7 @@
|
||||||
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2018 okapi <okapi@firemail.cc>
|
;;; Copyright © 2018 okapi <okapi@firemail.cc>
|
||||||
;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2018 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2064,6 +2065,7 @@ background file post-processing.")
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("-DSYSTEM_BOOST=on" "-DSYSTEM_YAMLCPP=on"
|
`(#:configure-flags '("-DSYSTEM_BOOST=on" "-DSYSTEM_YAMLCPP=on"
|
||||||
|
"-DSC_QT=off"
|
||||||
"-DSC_EL=off") ;scel is packaged individually as
|
"-DSC_EL=off") ;scel is packaged individually as
|
||||||
;emacs-scel.
|
;emacs-scel.
|
||||||
#:modules ((guix build utils)
|
#:modules ((guix build utils)
|
||||||
|
@ -2124,8 +2126,7 @@ set(YAMLCPP_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/\
|
||||||
external_libraries/yaml-cpp/include)"))
|
external_libraries/yaml-cpp/include)"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)
|
`(("pkg-config" ,pkg-config)))
|
||||||
("qttools" ,qttools)))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("jack" ,jack-1)
|
`(("jack" ,jack-1)
|
||||||
("libsndfile" ,libsndfile)
|
("libsndfile" ,libsndfile)
|
||||||
|
@ -2138,12 +2139,7 @@ external_libraries/yaml-cpp/include)"))
|
||||||
("icu4c" ,icu4c)
|
("icu4c" ,icu4c)
|
||||||
("boost" ,boost)
|
("boost" ,boost)
|
||||||
("boost-sync" ,boost-sync)
|
("boost-sync" ,boost-sync)
|
||||||
("yaml-cpp" ,yaml-cpp)
|
("yaml-cpp" ,yaml-cpp)))
|
||||||
("qtbase" ,qtbase) ;IDE support
|
|
||||||
("qtwebkit" ,qtwebkit)
|
|
||||||
("qtsensors" ,qtsensors)
|
|
||||||
("qtdeclarative" ,qtdeclarative)
|
|
||||||
("qtlocation" ,qtlocation)))
|
|
||||||
(home-page "https://github.com/supercollider/supercollider")
|
(home-page "https://github.com/supercollider/supercollider")
|
||||||
(synopsis "Synthesis engine and programming language")
|
(synopsis "Synthesis engine and programming language")
|
||||||
(description "SuperCollider is a synthesis engine (@code{scsynth} or
|
(description "SuperCollider is a synthesis engine (@code{scsynth} or
|
||||||
|
|
Loading…
Reference in New Issue