gnu: girara: Update to 0.2.9.
* gnu/packages/gtk.scm (girara): Update to 0.2.9. [build-system]: Switch to Meson build system. [arguments]: Trim accordingly.
This commit is contained in:
parent
cf0d6d8367
commit
bba29e106b
|
@ -41,6 +41,7 @@
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
#:use-module (guix build-system meson)
|
||||||
#:use-module (guix build-system perl)
|
#:use-module (guix build-system perl)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (guix build-system waf)
|
#:use-module (guix build-system waf)
|
||||||
|
@ -1368,15 +1369,15 @@ and routines to assist in editing internationalized text.")
|
||||||
(define-public girara
|
(define-public girara
|
||||||
(package
|
(package
|
||||||
(name "girara")
|
(name "girara")
|
||||||
(version "0.2.8")
|
(version "0.2.9")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
(string-append "https://pwmt.org/projects/girara/download/girara-"
|
(string-append "https://pwmt.org/projects/girara/download/girara-"
|
||||||
version ".tar.gz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"18wss3sak3djip090v2vdbvq1mvkwcspfswc87zbvv3magihan98"))))
|
"0lkxrfna818wkkr2f6mdzf15y5z8xl1b9592ylmzjbqsqya3w7x8"))))
|
||||||
(native-inputs `(("pkg-config" ,pkg-config)
|
(native-inputs `(("pkg-config" ,pkg-config)
|
||||||
("check" ,check)
|
("check" ,check)
|
||||||
("gettext" ,gettext-minimal)
|
("gettext" ,gettext-minimal)
|
||||||
|
@ -1385,13 +1386,7 @@ and routines to assist in editing internationalized text.")
|
||||||
;; Listed in 'Requires.private' of 'girara.pc'.
|
;; Listed in 'Requires.private' of 'girara.pc'.
|
||||||
(propagated-inputs `(("gtk+" ,gtk+)))
|
(propagated-inputs `(("gtk+" ,gtk+)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:make-flags
|
`(#:phases (modify-phases %standard-phases
|
||||||
`(,(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
|
||||||
"COLOR=0" "CC=gcc")
|
|
||||||
#:test-target "test"
|
|
||||||
#:disallowed-references (,xorg-server-1.19.3)
|
|
||||||
#:phases (modify-phases %standard-phases
|
|
||||||
(delete 'configure)
|
|
||||||
(add-before 'check 'start-xserver
|
(add-before 'check 'start-xserver
|
||||||
;; Tests require a running X server.
|
;; Tests require a running X server.
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
@ -1407,7 +1402,7 @@ and routines to assist in editing internationalized text.")
|
||||||
(setenv "DBUS_FATAL_WARNINGS" "0")
|
(setenv "DBUS_FATAL_WARNINGS" "0")
|
||||||
(zero? (system (string-append xorg-server "/bin/Xvfb "
|
(zero? (system (string-append xorg-server "/bin/Xvfb "
|
||||||
display " &")))))))))
|
display " &")))))))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(home-page "https://pwmt.org/projects/girara/")
|
(home-page "https://pwmt.org/projects/girara/")
|
||||||
(synopsis "Library for minimalistic gtk+3 user interfaces")
|
(synopsis "Library for minimalistic gtk+3 user interfaces")
|
||||||
(description "Girara is a library that implements a user interface that
|
(description "Girara is a library that implements a user interface that
|
||||||
|
|
Loading…
Reference in New Issue