Hello everyone!

I would like to submit the attached rockspec for inclusion in the rocks server. For a quick clarification: the attached rock is a (mostly) complete binding to the TokyoTyrant C library.

Thank you, and please let me know if I need to fix or change something in the spec-file.

--
Valeriu Paloş
http://valeriu.palos.ro
package = "Lua-TTyrant"
version = "1.0-1"
source = {
    url = "git://github.com/valeriupalos/lua-ttyrant.git"
}
description = {
    summary = "TokyoTyrant API for Lua.",
    detailed = [[
        A complete API binding exposing the functions from the
        C library of the TokyoTyrant key-value database server
        straight into Lua (i.e. it uses the Tyrant C functions
        rather than implementing the Tyrant protocol over TCP).
    ]],
    homepage = "http://github.com/valeriupalos/lua-ttyrant";,
    license = "MIT"
}
dependencies = {
    "lua >= 5.1"
}
external_dependencies = {
    LIBTOKYOTYRANT = {
        header = "tcrdb.h",
    }
}
supported_platforms = {
    "linux"
}
build = {
    type = "builtin",
    modules = {
        ttyrant = {
            sources = { "src/ttyrant.c" },
            libraries = { "tokyotyrant" }
        }
    }
}
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Luarocks-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/luarocks-developers

Reply via email to