gnu: quassel: Update package definition.
* gnu/packages/irc.scm (quassel)[source]: Remove bundled scripts. [arguments]: Update comments in 'configure-flags. [inputs]: Remove oxygen-icons. Move extra-cmake-modules and qttools ... [native-inputs]: ... to here.
This commit is contained in:
parent
4b1dd9ab31
commit
b82c63d013
|
@ -69,26 +69,33 @@
|
||||||
(patches (search-patches "quassel-fix-tls-check.patch"))
|
(patches (search-patches "quassel-fix-tls-check.patch"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ka456fb8ha3w7g74xlzfg6w4azxjjxgrhl4aqpbwg3lnd6fbr4k"))))
|
"0ka456fb8ha3w7g74xlzfg6w4azxjjxgrhl4aqpbwg3lnd6fbr4k"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
;; We don't want to install the bundles scripts
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
(delete-file-recursively "data/scripts")
|
||||||
|
(substitute* "data/CMakeLists.txt"
|
||||||
|
(("NOT WIN32") "WIN32"))))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; The three binaries are not mutually exlusive, and are all built
|
;; The three binaries are not mutually exlusive, and are all built
|
||||||
;; by default.
|
;; by default.
|
||||||
`(#:configure-flags '(;;"-DWANT_QTCLIENT=OFF" ; 5.0 MiB
|
'(#:configure-flags '(;;"-DWANT_QTCLIENT=OFF" ; 5.2 MiB
|
||||||
;;"-DWANT_CORE=OFF" ; 2.3 MiB
|
;;"-DWANT_CORE=OFF" ; 2.4 MiB
|
||||||
;;"-DWANT_MONO=OFF" ; 6.3 MiB
|
;;"-DWANT_MONO=OFF" ; 6.4 MiB
|
||||||
"-DUSE_QT5=ON" ; default is qt4
|
"-DUSE_QT5=ON" ; default is qt4
|
||||||
"-DWITH_KDE=OFF" ; no to integration
|
"-DWITH_KDE=OFF" ; no to kde integration ...
|
||||||
"-DWITH_OXYGEN=ON" ; on=embed icons
|
"-DWITH_OXYGEN=ON" ; therefore we install bundled icons
|
||||||
"-DWITH_WEBKIT=OFF") ; qtwebkit isn't packaged
|
"-DWITH_WEBKIT=OFF") ; qtwebkit isn't packaged
|
||||||
#:tests? #f)) ; no test target
|
#:tests? #f)) ; no test target
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
(native-inputs
|
||||||
(inputs
|
|
||||||
`(("extra-cmake-modules" ,extra-cmake-modules)
|
`(("extra-cmake-modules" ,extra-cmake-modules)
|
||||||
("oxygen-icons" ,oxygen-icons)
|
("pkg-config" ,pkg-config)
|
||||||
("qca" ,qca)
|
("qttools" ,qttools)))
|
||||||
|
(inputs
|
||||||
|
`(("qca" ,qca)
|
||||||
("qtbase", qtbase)
|
("qtbase", qtbase)
|
||||||
("qttools" ,qttools)
|
|
||||||
("qtscript" ,qtscript)
|
("qtscript" ,qtscript)
|
||||||
("snorenotify" ,snorenotify)
|
("snorenotify" ,snorenotify)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
|
|
Loading…
Reference in New Issue