summaryrefslogtreecommitdiff
path: root/textproc/lua-utf8/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2020-10-10lua-utf8: Update to 0.1.3nia1-2/+2
changes: update Unicode version to 14 Fix compile error on CentOS6
2020-07-11Add LUA_LINKER_MAGIC variable that centrally sets LDFLAGS on Darwin,nia1-3/+1
as should probably have been done to begin with. Remove per-package hacks.
2020-07-11also use -bundlenia1-2/+2
2020-07-11Help the macOS linker understand that these are runtime-loaded modules.nia1-1/+3
2020-07-02textproc: Add lua-utf8nia1-0/+26
This module adds UTF-8 support to Lua. It's compatible with Lua's own string module, and passes all string and pattern matching tests in Lua's test suite. It also adds some useful routines against UTF-8 features: - a convenient interface to escape Unicode sequences in strings. - string insert/remove, since UTF-8 substring extract may be expensive. - calculate Unicode width, useful when implementing e.g. console emulator. - a useful interface to translate Unicode offsets and byte offsets.