me
/
guix
Archived
1
0
Fork 0

gnu: xfe: Update to 1.44 and adjust potfiles.

* gnu/packages/disk.scm (xfe)[version]: Update to 1.44.
[phases](patch-potfiles): New phase.
master
Raghav Gururajan 2021-05-13 22:35:31 -04:00
parent b9f0e78238
commit 7c5ff1316f
No known key found for this signature in database
GPG Key ID: 5F5816647F8BE551
1 changed files with 11 additions and 3 deletions

View File

@ -1068,19 +1068,27 @@ since they are better handled by external tools.")
(define-public xfe
(package
(name "xfe")
(version "1.43.2")
(version "1.44")
(source
(origin
(method url-fetch)
(uri
(string-append "mirror://sourceforge/xfe/xfe/" version "/"
"xfe-" version ".tar.gz"))
"xfe-" version ".tar.xz"))
(sha256
(base32 "1fl51k5jm2vrfc2g66agbikzirmp0yb0lqhmsssixfb4mky3hpzs"))))
(base32 "1dihq03jqjllb69r78d9ihjjadi39v7sgzdf68qpxz5xhp8i8k2r"))))
(build-system gnu-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'patch-potfiles
(lambda _
;; To add missing entry 'intl/plural.c' to potfiles list.
;; Refer to https://sourceforge.net/p/xfe/bugs/257/
(substitute* "po/POTFILES.in"
(("src/help.h")
(string-append "src/help.h\n"
"intl/plural.c")))))
(add-after 'unpack 'patch-bin-dirs
(lambda* (#:key inputs #:allow-other-keys)
(let* ((bash (assoc-ref inputs "bash"))