Commit 7c8744a2 authored by Sebastien Bourdelin's avatar Sebastien Bourdelin Committed by Thomas Petazzoni
Browse files

lutok: new package

Lutok is a lightweight C++ API library for Lua.

https://github.com/jmmv/lutok



[Thomas:
 - move lutok inclusion in package/Config.in after including the Lua
   external modules
 - add a comment explaining why we are passing --without-atf
 - remove the logic around -ldl, it seems to build just fine without it.]

Signed-off-by: default avatarSebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 1f2a7b54
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -499,6 +499,7 @@ menu "Lua libraries/modules"
	source "package/xavante/Config.in"
endmenu
endif
	source "package/lutok/Config.in"
	source "package/moarvm/Config.in"
	source "package/mono/Config.in"
	source "package/nodejs/Config.in"
+13 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LUTOK
	bool "lutok"
	depends on BR2_INSTALL_LIBSTDCPP
	depends on BR2_PACKAGE_HAS_LUAINTERPRETER
	depends on !BR2_PACKAGE_LUAJIT
	help
	  Lutok is a lightweight C++ API library for Lua.

	  https://github.com/jmmv/lutok

comment "lutok needs a toolchain w/ C++ and full Lua"
	depends on !BR2_INSTALL_LIBSTDCPP || BR2_PACKAGE_LUAJIT
	depends on BR2_PACKAGE_HAS_LUAINTERPRETER
+2 −0
Original line number Diff line number Diff line
# Locally computed
sha256 2cec51efa0c8d65ace8b21eaa08384b77abc5087b46e785f78de1c21fb754cd5 lutok-0.4.tar.gz

package/lutok/lutok.mk

0 → 100644
+16 −0
Original line number Diff line number Diff line
################################################################################
#
# lutok
#
################################################################################

LUTOK_VERSION = 0.4
LUTOK_SITE = https://github.com/jmmv/lutok/releases/download/lutok-$(LUTOK_VERSION)
LUTOK_INSTALL_STAGING = YES
LUTOK_DEPENDENCIES = host-pkgconf lua
# --without-atf disables the atf-based lutok tests
LUTOK_CONF_OPTS = --without-doxygen --without-atf
LUTOK_LICENSE = BSD-3c
LUTOK_LICENSE_FILES = COPYING

$(eval $(autotools-package))