Archived
1
0
Fork 0

gnu: tracker: Use G-Expressions in arguments.

* gnu/packages/gnome.scm (tracker)[arguments]: Change to list of
G-Expressions.  Re-indent.
This commit is contained in:
Liliana Marie Prikler 2023-02-25 07:51:45 +01:00
parent ea75ca1806
commit daa681a38b
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -9676,19 +9676,20 @@ easy, safe, and automatic.")
"0r144kdqxdzs51qn495vablzf1zxkhkk6imrlrzj9wiqwc2gg520")))) "0r144kdqxdzs51qn495vablzf1zxkhkk6imrlrzj9wiqwc2gg520"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
`(#:glib-or-gtk? #t (list
#:test-options (list ,@(if (target-riscv64?) #:glib-or-gtk? #t
#:test-options `(list ,@(if (target-riscv64?)
`("--timeout-multiplier" "5") `("--timeout-multiplier" "5")
'())) '()))
#:configure-flags #:configure-flags
;; Otherwise, the RUNPATH will lack the final path component. ;; Otherwise, the RUNPATH will lack the final path component.
(list (string-append "-Dc_link_args=-Wl,-rpath=" #~(list (string-append "-Dc_link_args=-Wl,-rpath="
(assoc-ref %outputs "out") "/lib:" #$output "/lib:"
(assoc-ref %outputs "out") "/lib/tracker-3.0") #$output "/lib/tracker-3.0")
"-Ddocs=false" "-Ddocs=false"
"-Dsystemd_user_services=false") "-Dsystemd_user_services=false")
#:phases #:phases
(modify-phases %standard-phases #~(modify-phases %standard-phases
(add-after 'unpack 'patch-paths (add-after 'unpack 'patch-paths
(lambda* (#:key inputs #:allow-other-keys) (lambda* (#:key inputs #:allow-other-keys)
(substitute* "utils/trackertestutils/__main__.py" (substitute* "utils/trackertestutils/__main__.py"