- #
- # Copyright (C) 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_NPM_NAME:=node-hid
- PKG_NAME:=$(PKG_NPM_NAME)
- PKG_VERSION:=0.7.9
- PKG_RELEASE:=1
-
- PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
- PKG_SOURCE_URL:=https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
- PKG_HASH:=a13710ebff0a2d0e60e08442db192a4e891db89d535306d461b8a95ede7dbd90
-
- PKG_BUILD_DEPENDS:=node/host
- PKG_USE_MIPS16:=0
-
- PKG_MAINTAINER:=Hirokazu MORIKAWA <morikw2@gmail.com>
- PKG_LICENSE:=MIT or X11
- PKG_LICENSE_FILES:=
-
- include $(INCLUDE_DIR)/package.mk
-
- define Package/node-hid
- SUBMENU:=Node.js
- SECTION:=lang
- CATEGORY:=Languages
- TITLE:=Node.js package to access HID devices
- URL:=https://github.com/node-hid/node-hid
- DEPENDS:=+node +node-npm +libusb-1.0 +hidapi +libudev-fbsd
- endef
-
- define Package/node-hid/description
- Node.js package to access HID devices
- endef
-
- TAR_OPTIONS+= --strip-components 1
- TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)
-
- NODEJS_CPU:=$(subst powerpc,ppc,$(subst aarch64,arm64,$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))))
- TMPNPM:=$(shell mktemp -u XXXXXXXXXX)
-
- TARGET_CFLAGS+=$(FPIC) -I$(STAGING_DIR)/usr/include/libusb-1.0
-
- define Build/Compile
- git init $(PKG_BUILD_DIR)
- $(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 $(PKG_BUILD_DIR)
- rm -rf $(TMP_DIR)/npm-tmp-$(TMPNPM)
- rm -rf $(TMP_DIR)/npm-cache-$(TMPNPM)
- endef
-
- define Package/node-hid/install
- $(INSTALL_DIR) $(1)/usr/lib/node/$(PKG_NPM_NAME)
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{package.json,*.md} \
- $(1)/usr/lib/node/$(PKG_NPM_NAME)/
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{binding.gyp,*.js} \
- $(1)/usr/lib/node/$(PKG_NPM_NAME)/
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{node_modules,src} \
- $(1)/usr/lib/node/$(PKG_NPM_NAME)/
- $(INSTALL_DIR) $(1)/usr/lib/node/$(PKG_NPM_NAME)/build/Release
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/build/Release/HID.node \
- $(1)/usr/lib/node/$(PKG_NPM_NAME)/build/Release/
- $(INSTALL_DIR) $(1)/usr/bin
- $(LN) ../lib/node/node-hid/src/show-devices.js $(1)/usr/bin/hid-showdevices
- endef
-
- $(eval $(call BuildPackage,node-hid))
|