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:
parent
ea75ca1806
commit
daa681a38b
1 changed files with 47 additions and 46 deletions
|
@ -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"
|
||||||
|
|
Reference in a new issue