/usr/share/lua/5.1/lgi.lua is in lua-lgi 0.9.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ------------------------------------------------------------------------------
--
-- LGI Lua-side core.
--
-- Copyright (c) 2011 Pavel Holejsovsky
-- Licensed under the MIT license:
-- http://www.opensource.org/licenses/mit-license.php
--
------------------------------------------------------------------------------
-- This is simple forwarder to real package 'lgi/init.lua'. Normally,
-- lgi/init.lua could suffice, but this file is needed for two
-- reasons:
-- 1) Running uninstalled, because Lua unfortunately does not contain
-- './?/init.lua' component in its package.path
-- 2) Upgrading older installations (<0.2), where lgi.lua was the only
-- installed file, it would take precedence over 'lgi/init.lua'.
return require 'lgi.init'
|