[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#27118: [PATCH] Add hugin.
From: |
Ludovic Courtès |
Subject: |
bug#27118: [PATCH] Add hugin. |
Date: |
Mon, 29 May 2017 18:38:00 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) |
Andreas Enge <address@hidden> skribis:
> From fb114699c4c8058f12614524144ef0a03467669c Mon Sep 17 00:00:00 2001
> From: Andreas Enge <address@hidden>
> Date: Sun, 28 May 2017 20:08:15 +0200
> Subject: [PATCH] gnu: Add hugin.
>
> * gnu/packages/photo.scm (hugin): New variable.
[...]
> + (modify-phases %standard-phases
> + (add-before 'configure 'substitute
> + (lambda _
> + (substitute* "src/hugin1/base_wx/StitchingExecutor.cpp"
> + (("wxT\\(\"enblend\"\\)")
> + (string-append "wxT(\"" (which "enblend") "\")"))
> + (("wxT\\(\"enfuse\"\\)")
> + (string-append "wxT(\"" (which "enfuse") "\")"))))))
> + ))
‘guix lint’ should complain about these hanging parentheses. :-)
Apart from that it LGTM. Thank you!
Ludo’.