[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: import module from zip, like java jar package
- From: Patrick Rapin <toupie300@...>
- Date: Tue, 4 Jan 2011 09:37:40 +0100
> I need extend lua support load module from zip file, reference
> to package.loaders,I write a module simply can imp this.
I have also implemented the same feature but in a complete different way.
The goal was to be simplify the software distribution.
My version is in C and use minizip library instead of luazip (which is
based on zziplib).
But your implementation is very interesting. I'll try to test it.