gnu: suil: Use qtbase instead of qt-4.

* gnu/packages/audio.scm (suil)[inputs]: Replace qt-4 with qtbase.
[arguments]: Add configure flags that are needed for qtbase.
master
Ricardo Wurmus 2017-05-24 22:46:44 +02:00
parent 523544d3d1
commit 9f64f7e631
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 5 additions and 2 deletions

View File

@ -2054,11 +2054,14 @@ the Turtle syntax.")
(base32
"1kji3lhha26qr6xm9j8ic5c40zbrrb5qnwm2qxzmsfxgmrz29wkf"))))
(build-system waf-build-system)
(arguments `(#:tests? #f)) ; no check target
(arguments
`(#:tests? #f ; no check target
#:configure-flags
'("CXXFLAGS=-std=gnu++11")))
(inputs
`(("lv2" ,lv2)
("gtk+-2" ,gtk+-2)
("qt-4" ,qt-4)))
("qt" ,qtbase)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "http://drobilla.net/software/suil/")