mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Release notes:
https://github.com/q66/cffi-lua/releases/tag/v0.2.4
remove upstreamed patch
Update COPYING license hash, after year update in:
9f2acc9a2a
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
[Julien: add links in commit log]
Signed-off-by: Julien Olivain <ju.o@free.fr>
23 lines
621 B
Makefile
23 lines
621 B
Makefile
################################################################################
|
|
#
|
|
# lua-cffi
|
|
#
|
|
################################################################################
|
|
|
|
LUA_CFFI_VERSION = 0.2.4
|
|
LUA_CFFI_SITE = $(call github,q66,cffi-lua,v$(LUA_CFFI_VERSION))
|
|
LUA_CFFI_LICENSE = MIT
|
|
LUA_CFFI_LICENSE_FILES = COPYING.md
|
|
|
|
LUA_CFFI_DEPENDENCIES = libffi
|
|
|
|
ifeq ($(BR2_PACKAGE_LUA),y)
|
|
LUA_CFFI_DEPENDENCIES += lua
|
|
LUA_CFFI_CONF_OPTS += -Dlua_version=$(LUAINTERPRETER_ABIVER)
|
|
else ifeq ($(BR2_PACKAGE_LUAJIT),y)
|
|
LUA_CFFI_DEPENDENCIES += luajit
|
|
LUA_CFFI_CONF_OPTS += -Dlua_version=luajit
|
|
endif
|
|
|
|
$(eval $(meson-package))
|