72 lines
2.0 KiB
Makefile
72 lines
2.0 KiB
Makefile
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NPM_NAME:=request
|
|
PKG_NAME:=node-$(PKG_NPM_NAME)
|
|
PKG_VERSION:=2.88.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
|
|
PKG_SOURCE_URL:=https://mirrors.tencent.com/npm/$(PKG_NPM_NAME)/-/ \
|
|
https://registry.npm.taobao.org/$(PKG_NPM_NAME)/-/ \
|
|
https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
|
|
PKG_HASH:=e86dae884084b90a300096972f5954c815ebe5877c590df7fd170e8b71724242
|
|
|
|
PKG_MAINTAINER:=Jerrykuku <jerrykuku@gmail.com>
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_DEPENDS:=node/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_USE_MIPS16:=0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/node-request
|
|
SUBMENU:=Node.js
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Request is designed to be the simplest way possible to make http calls
|
|
URL:=https://www.npmjs.org/package/request
|
|
DEPENDS:=+node
|
|
endef
|
|
|
|
define Package/node-request/description
|
|
Request is designed to be the simplest way possible to make http calls. It supports HTTPS and follows redirects by default.
|
|
endef
|
|
|
|
NODEJS_CPU:=$(subst powerpc,ppc,$(subst aarch64,arm64,$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))))
|
|
TMPNPM:=$(shell mktemp -u XXXXXXXXXX)
|
|
|
|
TARGET_CFLAGS+=$(FPIC)
|
|
TARGET_CPPFLAGS+=$(FPIC)
|
|
|
|
define Build/Prepare
|
|
$(INSTALL_DIR) $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE_VARS) \
|
|
$(MAKE_FLAGS) \
|
|
npm_config_arch=$(NODEJS_CPU) \
|
|
npm_config_target_arch=$(NODEJS_CPU) \
|
|
npm_config_build_from_source=true \
|
|
npm_config_nodedir=$(STAGING_DIR)/usr/ \
|
|
npm_config_prefix=$(PKG_INSTALL_DIR)/usr/ \
|
|
npm_config_cache=$(TMP_DIR)/npm-cache-$(TMPNPM) \
|
|
npm_config_tmp=$(TMP_DIR)/npm-tmp-$(TMPNPM) \
|
|
npm install -g $(DL_DIR)/$(PKG_SOURCE)
|
|
rm -rf $(TMP_DIR)/npm-tmp-$(TMPNPM)
|
|
rm -rf $(TMP_DIR)/npm-cache-$(TMPNPM)
|
|
endef
|
|
|
|
define Package/node-request/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/node
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/* $(1)/usr/lib/node/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,node-request))
|