me
/
guix
Archived
1
0
Fork 0

gnu: libraqm: Update to 0.7.2.

* gnu/packages/fontutils.scm (libraqm): Update to 0.7.2.
[source]: Use git-fetch method.
[build-system]: Switch to meson-build-system.
[arguments]<#:phases>: Remove unnecessary (and unrecognized) configure flag
per above.
master
Nicolas Goaziou 2021-09-28 09:08:00 +02:00
parent fddacc9192
commit 999ef90a4c
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 8 additions and 9 deletions

View File

@ -952,18 +952,17 @@ Unicode Charts. It was developed for use with DejaVu Fonts project.")
(define-public libraqm
(package
(name "libraqm")
(version "0.7.1")
(version "0.7.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/HOST-Oman/libraqm/"
"releases/download/v" version "/"
"raqm-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/HOST-Oman/libraqm")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0a4q9dziirb85sa9rmkamg2krdhd009di2vlz91njwxcp3q8qj46"))))
(build-system gnu-build-system)
(arguments
`(#:configure-flags (list "--disable-static")))
(base32 "1shcs5l27l7380dvacvhl8wrdq3lix0wnhzvfdh7vx2pkzjs3zk6"))))
(build-system meson-build-system)
(native-inputs
`(("gtk-doc" ,gtk-doc/stable)
("pkg-config" ,pkg-config)