lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> De: Vyacheslav Egorov <mraleph@gorodok.net>
> I am searching a solution similiar to jar.
> I want to pack both my and third party modules in one archive (lets call 
> it lar), and then use it in another lua script/c program by
> 
> require "lar"
> ...
> lar.execute("plugin.lar", "main.lua")
> 
> or
> 
> #include "lar.hpp"
> ...
> lar_execute(L, "plugin.lar", "main.lua");
> 
> Is there any solutions?

Well, there is  http://luaforge.net/projects/lar/ but we are still  working on the details. You may want to check the code in CVS.

André