Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

luarocks(1) [debian man page]

luarocks(1)															       luarocks(1)

NAME
luarocks - module deployment system for Lua SYNOPSIS
luarocks [options] command DESCRIPTION
LuaRocks is a module deployment system for Lua Variables from the "variables" table of the configuration file can be overriden with VAR=VALUE assignments. Options: --from=<server> Fetch rocks/rockspecs from this server (takes priority over config file) --only-from=<server> Fetch rocks/rockspecs from this server only (overrides any entries in the config file) --to=<tree> Which tree to operate on. Commands: build Build/compile a rock. download Download a specific rock file from a rocks server. help Help on commands. install Install a rock. list Lists currently installed rocks. make Compile package in current directory using a rockspec. pack Create a rock, packing sources or binaries. remove Uninstall a rock. search Query the LuaRocks servers. unpack Unpack the contents of a rock. SEE ALSO
luarocks-admin(1) FILES
/etc/luarocks/config.lua AUTHOR
Enrico Tassi <gareuselesinge@debian.org> LuaRocks 14 June 2012 luarocks(1)

Check Out this Related Man Page

dictModifyValue(3)						    util/dict.h 						dictModifyValue(3)

NAME
dictModifyValue - create/modify an item. SYNOPSIS
#include <util/dict.h> NEOERR *dictModifyValue(dictCtx dict, const char *id, dictNewValueCB new_cb, dictUpdateValueCB update, void *rock); ARGUMENTS
dict - dictionary to add pair to. id - identifier of value new - function to call to create new value (may be NULL) update - function to call to modify value (if NULL, the old value is freed, and <new> is used) rock - context to pass to <new> or <update>. DESCRIPTION
Finds <id>'s value and calls <update>. If <id> is not in <dict>, calls <new> to obtain a new value. MT-Level: Safe if <dict> thread-safe. RETURN VALUE
None. SEE ALSO
dictDestroy(3), dictCleanup(3), dictReleaseLock(3), dictRemove(3), dictNext(3), dictCreate(3), dictSetValue(3), dictModifyValue(3), dict- Search ClearSilver 12 July 2007 dictModifyValue(3)
Man Page