[PATCH 18/19] gnu: orage: Fix build.

  • Done
  • quality assurance status badge
Details
2 participants
  • L p R n d n
  • Ludovic Courtès
Owner
unassigned
Submitted by
L p R n d n
Severity
normal
L
L
L p R n d n wrote on 2 Sep 2019 17:04
(address . guix-patches@gnu.org)
20190902150450.12444-1-guix@lprndn.info
* gnu/packages/xfce.scm (orage)[arguments]: Add phase fixing build with libical3.
---
gnu/packages/xfce.scm | 8 ++++++++
1 file changed, 8 insertions(+)

Toggle diff (21 lines)
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm
index f00ca7102f..524abe1bdf 100644
--- a/gnu/packages/xfce.scm
+++ b/gnu/packages/xfce.scm
@@ -985,6 +985,14 @@ memory usage graphically, and it can display processes as a tree.")
(sha256
(base32
"0qlhvnl2m33vfxqlbkic2nmfpwyd4mq230jzhs48cg78392amy9w"))))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-build-with-libical3
+ (lambda* _
+ (substitute* "src/ical-code.c" ;; .is_utc not available in libical3
+ ((".*\\.is_utc.*$") ""))
+ #t)))))
(build-system gnu-build-system)
(native-inputs
`(("intltool" ,intltool)
--
2.22.0
L
L
Ludovic Courtès wrote on 9 Sep 2019 23:47
(name . L p R n d n)(address . guix@lprndn.info)(address . 37281-done@debbugs.gnu.org)
87lfuxxhtg.fsf@gnu.org
L p R n d n <guix@lprndn.info> skribis:

Toggle quote (2 lines)
> * gnu/packages/xfce.scm (orage)[arguments]: Add phase fixing build with libical3.

Applied, thanks!
Closed
?