lua-ev: New package

Lua bindings for libev

[Peter: fix file header]
Signed-off-by: Assaf Inbal <shmuelzon@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Assaf Inbal 2013-06-17 08:55:48 +03:00 committed by Peter Korsgaard
parent a28ec29a9e
commit 1286135afc
3 changed files with 22 additions and 0 deletions

View File

@ -320,6 +320,7 @@ source "package/luacjson/Config.in"
source "package/luaexpat/Config.in"
source "package/luafilesystem/Config.in"
source "package/luasocket/Config.in"
source "package/lua-ev/Config.in"
source "package/lua-msgpack-native/Config.in"
source "package/rings/Config.in"
source "package/wsapi/Config.in"

7
package/lua-ev/Config.in Normal file
View File

@ -0,0 +1,7 @@
config BR2_PACKAGE_LUA_EV
bool "lua-ev"
select BR2_PACKAGE_LIBEV
help
Get access to the libev library from Lua.
https://github.com/brimworks/lua-ev

14
package/lua-ev/lua-ev.mk Normal file
View File

@ -0,0 +1,14 @@
################################################################################
#
# lua-ev
#
################################################################################
LUA_EV_VERSION = 458165b
LUA_EV_SITE = http://github.com/brimworks/lua-ev/tarball/$(LUA_EV_VERSION)
LUA_EV_DEPENDENCIES = lua libev
LUA_EV_LICENSE = MIT
LUA_EV_LICENSE_FILES = README
LUA_EV_CONF_OPT = -DINSTALL_CMOD="/usr/lib/lua"
$(eval $(cmake-package))