logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git
commit: e0453f2035b3696939ecd1b7f20d03964dd3bf98
parent dd2c3c24c0673331bacadd19ab6b82f379de4247
Author: Michael Forney <mforney@mforney.org>
Date:   Sun, 11 Nov 2018 12:13:52 -0800

lua: Install as lua5.2 with lua symlink

This way, we can make sure we are using the right version in build scripts
(and, some distributions don't install unversioned lua).

Diffstat:

Mpkg/lua/gen.lua3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pkg/lua/gen.lua b/pkg/lua/gen.lua @@ -13,7 +13,8 @@ lib('liblua.a', [[src/( )]]) exe('lua', {'src/lua.c', 'liblua.a'}) -file('bin/lua', '755', '$outdir/lua') +file('bin/lua5.2', '755', '$outdir/lua') +sym('bin/lua', 'lua5.2') man{'doc/lua.1'} fetch 'curl'