mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: sord: Update to 0.16.14.
* gnu/packages/rdf.scm (sord): Update to 0.16.14. [build-system]: Use meson-build-system. [arguments]: Use G-expression.
This commit is contained in:
parent
ee10850d14
commit
45a82f08f4
1 changed files with 12 additions and 14 deletions
|
@ -311,26 +311,24 @@ (define-public serd
|
||||||
(define-public sord
|
(define-public sord
|
||||||
(package
|
(package
|
||||||
(name "sord")
|
(name "sord")
|
||||||
(version "0.16.8")
|
(version "0.16.14")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://download.drobilla.net/sord-"
|
(uri (string-append "https://download.drobilla.net/sord-"
|
||||||
version ".tar.bz2"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"052y7zllrg0bzyky2rmrrwnnf16p6bk7q40rq9mgm0mzm8p9sa3w"))))
|
"06vkqk3dnn15zdnzklahib2pvbfspy2zcrnvhmxnw8fbbxyxj3r2"))))
|
||||||
(build-system waf-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
(list
|
||||||
#:phases
|
#:tests? #f ; no check target
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(add-before
|
#~(modify-phases %standard-phases
|
||||||
'configure 'set-ldflags
|
(add-before 'configure 'set-ldflags
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda _
|
||||||
(setenv "LDFLAGS"
|
(setenv "LDFLAGS"
|
||||||
(string-append "-Wl,-rpath="
|
(string-append "-Wl,-rpath=" #$output "/lib")))))))
|
||||||
(assoc-ref outputs "out") "/lib"))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list pcre))
|
(list pcre))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
|
Loading…
Reference in a new issue