diff options
author | Hirokazu MORIKAWA <morikw2@gmail.com> | 2021-02-17 10:47:06 +0900 |
---|---|---|
committer | Hirokazu MORIKAWA <morikw2@gmail.com> | 2021-02-17 10:47:06 +0900 |
commit | 33c2a28acaac926fd3a726d6417f9dd01d294bea (patch) | |
tree | 8a1adfda0be9c3f6e78e684d612f26d63462a806 /lang/node-yarn | |
parent | d053df65e9421c57741d3369922a0c9b15bb8926 (diff) |
node-yarn: add new package - for building adguardhome
Add the necessary new package to build the latest version of adguardhome.
See this thread : https://github.com/openwrt/packages/pull/14717
Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
Diffstat (limited to 'lang/node-yarn')
-rw-r--r-- | lang/node-yarn/Makefile | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/lang/node-yarn/Makefile b/lang/node-yarn/Makefile new file mode 100644 index 000000000..55919de97 --- /dev/null +++ b/lang/node-yarn/Makefile @@ -0,0 +1,71 @@ +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NPM_NAME:=yarn +PKG_NAME:=node-$(PKG_NPM_NAME) +PKG_VERSION:=1.22.10 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz +PKG_SOURCE_URL:=https://registry.npmjs.org/$(PKG_NPM_NAME)/-/ +PKG_HASH:=05a22fff30d7d8e8005bed277bf20d55111ba2bed65a6b91a0fcd1307b71fd8d + +PKG_MAINTAINER:=Hirokazu MORIKAWA <morikw2@gmail.com>, Patrik Laszlo <alabard@gmail.com>, Dobroslaw Kijowski <dobo90@gmail.com> +PKG_LICENSE:=BSD-2-Clause +PKG_LICENSE_FILES:=LICENSE + +PKG_HOST_ONLY:=1 +HOST_BUILD_DEPENDS:=node/host +HOST_BUILD_PARALLEL:=1 + +include $(INCLUDE_DIR)/host-build.mk +include $(INCLUDE_DIR)/package.mk + +define Package/node-yarn + SUBMENU:=Node.js + SECTION:=lang + CATEGORY:=Languages + TITLE:=Fast, reliable, and secure dependency management + URL:=https://yarnpkg.com/ + DEPENDS:=+node + BUILDONLY:=1 +endef + +define Package/node-yarn/description + Fast, reliable, and secure dependency management +endef + +TAR_OPTIONS+= --strip-components 1 +TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS) + +HOSTTMPNPM:=$(shell mktemp -u XXXXXXXXXX) + +define Host/Compile + $(HOST_MAKE_VARS) \ + npm_config_nodedir=$(STAGING_DIR)/usr/ \ + npm_config_prefix=$(HOST_INSTALL_DIR)/usr/ \ + npm_config_cache=$(TMP_DIR)/npm-cache-$(HOSTTMPNPM) \ + npm_config_tmp=$(TMP_DIR)/npm-tmp-$(HOSTTMPNPM) \ + npm install -g $(HOST_BUILD_DIR) + rm -rf $(TMP_DIR)/npm-tmp-$(HOSTTMPNPM) + rm -rf $(TMP_DIR)/npm-cache-$(HOSTTMPNPM) +endef + +define Host/Install + $(INSTALL_DIR) $(1)/lib/node_modules/$(PKG_NPM_NAME) + $(CP) $(HOST_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{package.json,LICENSE} \ + $(1)/lib/node_modules/$(PKG_NPM_NAME)/ + $(CP) $(HOST_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/README.md \ + $(1)/lib/node_modules/$(PKG_NPM_NAME)/ + $(CP) $(HOST_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{bin,lib} \ + $(1)/lib/node_modules/$(PKG_NPM_NAME)/ + $(INSTALL_DIR) $(1)/bin + $(LN) ../lib/node_modules/$(PKG_NPM_NAME)/bin/yarn.js $(1)/bin/yarn + $(LN) ../lib/node_modules/$(PKG_NPM_NAME)/bin/yarn.js $(1)/bin/yarnpkg +endef + +$(eval $(call HostBuild)) +$(eval $(call BuildPackage,node-yarn)) |