gnu: orc: Update to 0.4.30.
* gnu/packages/gstreamer.scm (orc): Update to 0.4.30. [build-system]: Change to MESON-BUILD-SYSTEM. [arguments]: Adjust phase order to cope with the new out-of-source build. [native-inputs]: Add GTK-DOC.master
parent
4442d4dc40
commit
45b01f2e05
|
@ -29,6 +29,7 @@
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
#:use-module (guix build-system meson)
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages audio)
|
#:use-module (gnu packages audio)
|
||||||
|
@ -68,19 +69,19 @@
|
||||||
(define-public orc
|
(define-public orc
|
||||||
(package
|
(package
|
||||||
(name "orc")
|
(name "orc")
|
||||||
(version "0.4.29")
|
(version "0.4.30")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://gstreamer.freedesktop.org/data/src/"
|
(uri (string-append "https://gstreamer.freedesktop.org/data/src/"
|
||||||
"orc/orc-" version ".tar.xz"))
|
"orc/orc-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1cisbbn69p9c8vikn0nin14q0zscby5m8cyvzxyw2pjb2kwh32ag"))))
|
"0wj93im7i8a6546q2r8sp39yjfbxflkc0ygb0b8iqsd58qhvjhds"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'check 'disable-faulty-test
|
(add-after 'unpack 'disable-faulty-test
|
||||||
(lambda _
|
(lambda _
|
||||||
;; XXX Disable the 'test-limits' and 'exec_opcodes_sys'
|
;; XXX Disable the 'test-limits' and 'exec_opcodes_sys'
|
||||||
;; tests, which fail on some machines. See:
|
;; tests, which fail on some machines. See:
|
||||||
|
@ -90,6 +91,8 @@
|
||||||
(("if \\(error\\) return 1;")
|
(("if \\(error\\) return 1;")
|
||||||
"if (error) return 77;"))
|
"if (error) return 77;"))
|
||||||
#t)))))
|
#t)))))
|
||||||
|
(native-inputs
|
||||||
|
`(("gtk-doc" ,gtk-doc)))
|
||||||
(home-page "https://gstreamer.freedesktop.org/modules/orc.html")
|
(home-page "https://gstreamer.freedesktop.org/modules/orc.html")
|
||||||
(synopsis "Oil runtime compiler")
|
(synopsis "Oil runtime compiler")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue