mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 19:14:30 +04:00
There are roughly 50 Lua packages. It's about time we consider a proposal for moving all of them under a lang/lua sub-folder. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
45 lines
1.1 KiB
Makefile
45 lines
1.1 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.10.0-0
|
|
PKG_VERSION:=$(subst -,.,$(PKG_SOURCE_VERSION))
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/zhaozg/lua-openssl.git
|
|
PKG_MIRROR_HASH:=e3c6173321132e2ce69cdedd8638acdc970a3fb1c0c3677d4edd9fe39e84853f
|
|
|
|
PKG_MAINTAINER:=Amnon Paz <pazamnon@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/cmake.mk
|
|
|
|
define Package/lua-openssl
|
|
SUBMENU:=Lua
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Lua openSSL binding
|
|
URL:=http://github.com/zhaozg/lua-openssl
|
|
DEPENDS:=+lua +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))
|