mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
8238e4ddfa
The CMakeLists.txt first tries FindLuaJIT.cmake which uses NO_DEFAULT_PATH with hardcoded host paths, so it always fails in cross-compilation. The fallback find_package(Lua REQUIRED) may also fail to find a flat sysroot layout where lua.h lives at /usr/include/lua.h rather than a versioned subdirectory. Explicitly pass LUA_INCLUDE_DIR and LUA_LIBRARY to CMake to bypass both finders, and depend on +liblua (the library package) instead of +lua to ensure Build/InstallDev runs and Lua headers are present in the staging directory before this package builds. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2016 Amnon Paz <pazamnon@gmail.com>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=lua-openssl
|
|
PKG_SOURCE_VERSION:=0.11.1
|
|
PKG_VERSION:=$(subst -,.,$(PKG_SOURCE_VERSION))
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/zhaozg/lua-openssl.git
|
|
PKG_MIRROR_HASH:=286531d44618d2c8843c9acfbe9d56d309caed0a9374b4559b1077099b795958
|
|
|
|
PKG_MAINTAINER:=Amnon Paz <pazamnon@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
CMAKE_OPTIONS += \
|
|
-DLUA_INCLUDE_DIR=$(STAGING_DIR)/usr/include \
|
|
-DLUA_LIBRARY=$(STAGING_DIR)/usr/lib/liblua.so
|
|
|
|
define Package/lua-openssl
|
|
SUBMENU:=Lua
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Lua openSSL binding
|
|
URL:=http://github.com/zhaozg/lua-openssl
|
|
DEPENDS:=+liblua +libopenssl +librt
|
|
endef
|
|
|
|
define Package/lua-openssl/description
|
|
A free, MIT-licensed OpenSSL binding for Lua.
|
|
endef
|
|
|
|
define Package/lua-openssl/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/lua/5.1/openssl.so $(1)/usr/lib/lua/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,lua-openssl))
|