lua-users home
lua-l archive

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


Hisham wrote:
Hi,

And here is the 0.4 release of LuaRocks, the system for deployment and
management of Lua modules.

A number of new features and bugfixes are contained in this release, including:

* Adds the "unpack" command for debugging rocks (.src.rock only at this point).
* Support curl as an alternative downloader for OSX, removing the
dependency on wget.
* Support for installing non-Lua entries in bin/ dirs.
* Support for specifying libdirs, incdirs, libraries and defines in
"module"-type builds.
* x86_64 support, by Brian Hetro.
* FreeBSD support, by Matthew M. Burke.
* Performance improvements.
* Many assorted bugfixes.

Download links and documentation are available at http://www.luarocks.org

Check out the current rocks at repository at http://luarocks.luaforge.net/rocks/

Cheers,
-- Hisham

Small bug in the configure script: It only reads the first 2 items in the path.

in find_program(), the line:
    path="`echo "$pat[5;5~[5;5~h" | sed -n 's/[^:]*::*\(.*\)/\1/p'`"
should read:
    path="`echo "$path" | sed -n 's/[^:]*::*\(.*\)/\1/p'`"