File: lgi.lua

package info (click to toggle)
lua-lgi 0.9.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,376 kB
  • sloc: ansic: 5,082; makefile: 169; sh: 31
file content (19 lines) | stat: -rw-r--r-- 756 bytes parent folder | download | duplicates (6)
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'