APKBUILD examples:Special Subpackages Languages: Difference between revisions

From Alpine Linux
No edit summary
(use cat template)
Line 1: Line 1:
To keep packages small, languages files (LC_MESSAGES) are places in a seperate -lang subpackages.
To keep packages small, languages files (LC_MESSAGES) are places in a seperate -lang subpackages.


<pre>
{{cat|APKBUILD|...
subpackages{{=}}"$pkgname-lang"
...
...
subpackages="$pkgname-lang"
}}
...
</pre>


[[abuild]] is throwing a warning if it detects translation.
[[abuild]] is throwing a warning if it detects translation.

Revision as of 22:31, 16 September 2023

To keep packages small, languages files (LC_MESSAGES) are places in a seperate -lang subpackages.

Contents of APKBUILD

... subpackages="$pkgname-lang" ...

abuild is throwing a warning if it detects translation.

>>> WARNING: package*: Found /usr/share/locale. Maybe add $pkgname-lang to subpackages?

Please note that some packages will automatically detect NLS if gettext-dev is installed at build time. If gettext-dev is not a direct or indirect dependency then should most likely no -lang be needed.