local.mk 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # GNU Guix --- Functional package management for GNU
  2. # Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
  3. # Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
  4. #
  5. # This file is part of GNU Guix.
  6. #
  7. # GNU Guix is free software; you can redistribute it and/or modify it
  8. # under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 3 of the License, or (at
  10. # your option) any later version.
  11. #
  12. # GNU Guix is distributed in the hope that it will be useful, but
  13. # WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  19. DOC_PO_FILES = \
  20. %D%/guix-manual.es.po \
  21. %D%/guix-manual.de.po \
  22. %D%/guix-manual.fa.po \
  23. %D%/guix-manual.fr.po \
  24. %D%/guix-manual.it.po \
  25. %D%/guix-manual.ko.po \
  26. %D%/guix-manual.pt_BR.po \
  27. %D%/guix-manual.ru.po \
  28. %D%/guix-manual.sk.po \
  29. %D%/guix-manual.zh_CN.po
  30. DOC_COOKBOOK_PO_FILES = \
  31. %D%/guix-cookbook.de.po \
  32. %D%/guix-cookbook.fa.po \
  33. %D%/guix-cookbook.fr.po \
  34. %D%/guix-cookbook.ko.po \
  35. %D%/guix-cookbook.zh_Hans.po
  36. EXTRA_DIST = \
  37. %D%/guix-manual.pot \
  38. %D%/guix-cookbook.pot \
  39. $(DOC_PO_FILES) \
  40. $(DOC_COOKBOOK_PO_FILES)
  41. POT_OPTIONS = \
  42. --package-name "guix manual" --package-version "$(VERSION)" \
  43. --copyright-holder "the authors of Guix (msgids)" \
  44. --msgid-bugs-address "bug-guix@gnu.org"
  45. %D%/%.pot: $(srcdir)/doc/%.texi
  46. $(AM_V_PO4A)$(PO4A_UPDATEPO) -M UTF-8 -f texinfo -m "$<" \
  47. -p "$@" $(POT_OPTIONS) && \
  48. touch $@
  49. %D%/guix-manual.pot: %D%/guix.pot %D%/contributing.pot
  50. msgcat $^ > $@
  51. doc-pot-update: %D%/guix-manual.pot %D%/guix-cookbook.pot
  52. .PHONY: doc-pot-update