apteryx pushed a commit to branch master
in repository guix.
commit ed9bc58938d0a28888701860c049fb02073f4c93
Author: Denys Nykula <[email protected]>
AuthorDate: Sun Aug 13 17:38:02 2023 +0300
gnu: ardour: Build locales.
The TRANSLATORS file in the Ardour source says the i18n waf phase
is optional between the build and install phases.
* gnu/packages/audio.scm (ardour)[#:phases] Add build-i18n.
Signed-off-by: Maxim Cournoyer <[email protected]>
---
gnu/packages/audio.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index b786375599..06a68f2982 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -779,6 +779,9 @@ namespace ARDOUR { const char* revision = \"" version "\" ;
const char* date = \
libdir "/panners" ":"
libdir "/surfaces" ":"
libdir "/vamp" "\"]"))))))
+ (add-after 'build 'build-i18n
+ (lambda _
+ (invoke "python" "waf" "i18n")))
(add-after 'install 'install-freedesktop-files
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))