mirror of
https://github.com/openwrt/packages.git
synced 2025-09-27 19:15:18 +00:00
With the recent move to using ZSTD as the default compression format for packaging git repo clones we must refresh all of the hashes for the packages feed as well. Signed-off-by: Robert Marko <robimarko@gmail.com>
90 lines
2.2 KiB
Makefile
90 lines
2.2 KiB
Makefile
#
|
|
# Copyright (C) 2006-2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luarocks
|
|
PKG_VERSION:=2.2.2
|
|
PKG_RELEASE:=4
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/keplerproject/luarocks
|
|
PKG_SOURCE_VERSION:=v$(PKG_VERSION)
|
|
PKG_MIRROR_HASH:=9b2f880e0ff57a0d7e3a9d8d5365c73e6f546891bc39d2c6ef4c3443a8ca4b45
|
|
|
|
PKG_MAINTAINER:=Amr Hassan <amr.hassan@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_DEPENDS:=lua/host
|
|
HOST_BUILD_DEPENDS:=$(PKG_BUILD_DEPENDS)
|
|
HOST_BUILD_PARALLEL:=1
|
|
|
|
HOST_BUILD_PREFIX:=$(STAGING_DIR)/host
|
|
HOST_BUILD_DIR:=$(BUILD_DIR)/host/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/luarocks
|
|
SUBMENU:=Lua
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=luarocks
|
|
URL:=https://github.com/keplerproject/luarocks
|
|
DEPENDS:=+lua +luac +liblua +luasocket +unzip +curl +luasec
|
|
endef
|
|
|
|
define Package/luarocks/description
|
|
LuaRocks is a deployment and management system for Lua modules.
|
|
endef
|
|
|
|
# My custom args, copied and modified from SDK_ROOT/include/package-defaults.mk
|
|
CONFIGURE_ARGS = \
|
|
--prefix=$(CONFIGURE_PREFIX) \
|
|
--sysconfdir=/etc \
|
|
--with-lua=$(STAGING_DIR_HOSTPKG)
|
|
|
|
HOST_CONFIGURE_ARGS= \
|
|
--prefix=$(STAGING_DIR)/host \
|
|
--sysconfdir=$(STAGING_DIR)/host/etc \
|
|
--with-lua=$(STAGING_DIR_HOSTPKG)
|
|
|
|
CONFIGURE_VARS = \
|
|
LUAROCKS_UNAME_S="Linux" \
|
|
LUAROCKS_UNAME_M="$(ARCH)"
|
|
|
|
HOST_CONFIGURE_VARS = \
|
|
LUAROCKS_UNAME_S="Linux" \
|
|
LUAROCKS_UNAME_M="$(ARCH)"
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default,build)
|
|
endef
|
|
|
|
define Host/Compile
|
|
$(call Host/Compile/Default,build)
|
|
endef
|
|
|
|
define Package/luarocks/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/luarocks-5.1 $(1)/usr/bin/luarocks
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/luarocks-admin-5.1 $(1)/usr/bin/luarocks-admin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/share $(1)/usr/share
|
|
$(CP) $(PKG_INSTALL_DIR)/etc $(1)/etc
|
|
endef
|
|
|
|
define Host/Install
|
|
$(MAKE) -C $(HOST_BUILD_DIR) install
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,luarocks))
|
|
|
|
$(eval $(call HostBuild))
|