[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26637: [PATCH] gnu: Add gcompris-qt.
From: |
Thomas Danckaert |
Subject: |
bug#26637: [PATCH] gnu: Add gcompris-qt. |
Date: |
Fri, 28 Apr 2017 15:02:14 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) |
Hi!
> + (native-inputs
> + `(("extra-cmake-modules" ,extra-cmake-modules)
> + ("gettext" ,gettext-minimal)
> + ("perl" ,perl)))
> + (inputs
> + `(("python-2" ,python-2)
> + ("qt" ,qt)))
*This time also replying to debbugs*
I think it's nicer to use the modular qt packages if possible? I
checked and it compiles with the following inputs:
(native-inputs
`(("extra-cmake-modules" ,extra-cmake-modules)
("gettext" ,gettext-minimal)
("perl" ,perl)
("qttools" ,qttools)))
(inputs
`(("python-2" ,python-2)
("qtbase" ,qtbase)
("qtdeclarative" ,qtdeclarative)
("qtmultimedia" ,qtmultimedia)
("qtsvg" ,qtsvg)
("qtxmlpatterns" ,qtxmlpatterns)
("qtsensors" ,qtsensors)))
otherwise LGTM!
Thomas