node-hid: update to 0.7.7

update to 0.7.7
Takeover of PKG_MAINTAINER
Major Makefile Updates

Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
This commit is contained in:
Hirokazu MORIKAWA 2019-04-05 12:47:35 +09:00
parent 6d535fd282
commit c73379e1ac

View file

@ -7,23 +7,20 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NPM_NAME:=hid PKG_NPM_NAME:=node-hid
PKG_NAME:=node-$(PKG_NPM_NAME) PKG_NAME:=$(PKG_NPM_NAME)
PKG_VERSION:=0.7.2 PKG_VERSION:=0.7.7
PKG_RELEASE:=2 PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://github.com/node-hid/node-hid.git PKG_SOURCE_URL:=https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_HASH:=ac14467265a64116114e99091cd557ca7953500285c78cb4bdf6b82fe262cca6
PKG_SOURCE_VERSION:=v0.7.2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
PKG_MIRROR_HASH:=ede801a26a23290ab76d64ab636c3c3e2788030bb830af7006d37444c2a7b2c4
PKG_BUILD_DEPENDS:=node/host PKG_BUILD_DEPENDS:=node/host
PKG_NODE_VERSION:=`$(STAGING_DIR_HOSTPKG)/bin/node --version` PKG_USE_MIPS16:=0
PKG_MAINTAINER:=John Crispin <blogic@openwrt.org> PKG_MAINTAINER:=Hirokazu MORIKAWA <morikw2@gmail.com>
PKG_LICENSE:=Custom PKG_LICENSE:=MIT or X11
PKG_LICENSE_FILES:= PKG_LICENSE_FILES:=
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
@ -34,43 +31,49 @@ define Package/node-hid
CATEGORY:=Languages CATEGORY:=Languages
TITLE:=Node.js package to access HID devices TITLE:=Node.js package to access HID devices
URL:=https://github.com/node-hid/node-hid URL:=https://github.com/node-hid/node-hid
DEPENDS:=+node +node-npm +libusb-1.0 +hidapi +libstdcpp +libudev-fbsd DEPENDS:=+node +node-npm +libusb-1.0 +hidapi +libudev-fbsd
endef endef
define Package/node-hid/description define Package/node-hid/description
Node.js package to access HID devices Node.js package to access HID devices
endef endef
CPU:=$(subst x86_64,x64,$(subst i386,ia32,$(ARCH))) TAR_OPTIONS+= --strip-components 1
TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)
EXTRA_CFLAGS+=-I$(STAGING_DIR)/usr/include/libusb-1.0 NODEJS_CPU:=$(subst powerpc,ppc,$(subst aarch64,arm64,$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))))
TARGET_CFLAGS+=-I$(STAGING_DIR)/usr/include/libusb-1.0
define Build/Compile define Build/Compile
git init $(PKG_BUILD_DIR) git init $(PKG_BUILD_DIR)
cd $(PKG_BUILD_DIR) ; \
$(MAKE_VARS) \ $(MAKE_VARS) \
$(MAKE_FLAGS) \ $(MAKE_FLAGS) \
npm_config_arch=$(CONFIG_ARCH) \ npm_config_arch=$(NODEJS_CPU) \
npm_config_nodedir=$(BUILD_DIR)/node-$(PKG_NODE_VERSION)/ \ npm_config_target_arch=$(NODEJS_CPU) \
npm_config_cache=$(BUILD_DIR)/node-$(PKG_NODE_VERSION)/npm-cache \ npm_config_build_from_source=true \
PREFIX="$(PKG_INSTALL_DIR)/usr/" \ npm_config_nodedir=$(STAGING_DIR)/usr/ \
npm install --build-from-source --target_arch=$(CPU) -g \ npm_config_prefix=$(PKG_INSTALL_DIR)/usr/ \
`npm pack $(PKG_BUILD_DIR) | tail -n 1` npm_config_cache=$(TMP_DIR)/npm-cache \
npm_config_tmp=$(TMP_DIR)/npm-tmp \
npm install -g $(PKG_BUILD_DIR)
rm -rf $(TMP_DIR)/npm-tmp
rm -rf $(TMP_DIR)/npm-cache
endef endef
define Package/node-hid/install define Package/node-hid/install
mkdir -p $(1)/usr/lib/node/node-hid/ $(INSTALL_DIR) $(1)/usr/lib/node/$(PKG_NPM_NAME)
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/. $(1)/usr/lib/node/ $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{package.json,*.md} \
$(RM) -rf $(1)/usr/lib/node/node-hid/patches \ $(1)/usr/lib/node/$(PKG_NPM_NAME)/
$(1)/usr/lib/node/node-hid/.p* \ $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{binding.gyp,*.js} \
$(1)/usr/lib/node/node-hid/.quilt* \ $(1)/usr/lib/node/$(PKG_NPM_NAME)/
$(1)/usr/lib/node/node-hid/.built* \ $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{node_modules,src} \
$(1)/usr/lib/node/node-hid/.config* $(1)/usr/lib/node/$(PKG_NPM_NAME)/
# Strip PKG_BUILD_DIR from useless metadata inserted by npm install $(INSTALL_DIR) $(1)/usr/lib/node/$(PKG_NPM_NAME)/build/Release
# https://github.com/npm/npm/issues/10393 $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/build/Release/HID.node \
# https://github.com/npm/npm/issues/12110 $(1)/usr/lib/node/$(PKG_NPM_NAME)/build/Release/
find $(1)/usr/lib/node -name package.json -exec sed -i -e 's,$(PKG_BUILD_DIR),,g' {} + $(INSTALL_DIR) $(1)/usr/bin
$(LN) ../lib/node/node-hid/src/show-devices.js $(1)/usr/bin/hid-showdevices
endef endef
$(eval $(call BuildPackage,node-hid)) $(eval $(call BuildPackage,node-hid))