mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
node-arduino-firmata: support serialport 7.x
support serialport 7.x Takeover of PKG_MAINTAINER Major Makefile Updates Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
This commit is contained in:
@@ -10,19 +10,16 @@ include $(TOPDIR)/rules.mk
|
||||
PKG_NPM_NAME:=arduino-firmata
|
||||
PKG_NAME:=node-$(PKG_NPM_NAME)
|
||||
PKG_VERSION:=0.3.4
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://github.com/shokai/node-arduino-firmata.git
|
||||
PKG_MIRROR_HASH:=1aef93dc704ea771b9eab51cb64103533f829aee5b2886ad55d173adf3f11ede
|
||||
PKG_SOURCE_VERSION:=v0.3.4
|
||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_SOURCE_VERSION)
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.gz
|
||||
PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
|
||||
PKG_SOURCE_URL:=https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
|
||||
PKG_HASH:=d7157e02867eae82887cb5e17b90c963fe7489bacd464110bfd20c672b8d5a98
|
||||
|
||||
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:=MIT
|
||||
PKG_LICENSE_FILES:=LICENSE.txt
|
||||
|
||||
@@ -32,47 +29,44 @@ define Package/node-arduino-firmata
|
||||
SUBMENU:=Node.js
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
TITLE:=Node.js package to access serial ports for reading and writing
|
||||
URL:=https://www.npmjs.org/package/serialport
|
||||
TITLE:=Arduino Firmata implementation for Node.js
|
||||
URL:=https://www.npmjs.com/package/arduino-firmata
|
||||
DEPENDS:=+node +node-npm +node-serialport
|
||||
endef
|
||||
|
||||
define Package/node-arduino-firmata/description
|
||||
Node.js package to access serial ports for reading and writing OR Welcome your robotic JavaScript overlords. Better yet, program them!
|
||||
Arduino Firmata protocol (http://firmata.org) implementation on Node.js.
|
||||
endef
|
||||
|
||||
define Build/Prepare
|
||||
/bin/tar xzf $(DL_DIR)/$(PKG_SOURCE) -C $(PKG_BUILD_DIR) --strip-components 1
|
||||
$(Build/Patch)
|
||||
endef
|
||||
TAR_OPTIONS+= --strip-components 1
|
||||
TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)
|
||||
|
||||
EXTRA_LDFLAGS="-L$(TOOLCHAIN_DIR)/lib/ -Wl,-rpath-link $(TOOLCHAIN_DIR)/lib/" \
|
||||
NODEJS_CPU:=$(subst powerpc,ppc,$(subst aarch64,arm64,$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))))
|
||||
|
||||
define Build/Compile
|
||||
cd $(PKG_BUILD_DIR) ; \
|
||||
$(MAKE_VARS) \
|
||||
$(MAKE_FLAGS) \
|
||||
npm_config_arch=$(CONFIG_ARCH) \
|
||||
npm_config_nodedir=$(BUILD_DIR)/node-$(PKG_NODE_VERSION)/ \
|
||||
npm_config_cache=$(BUILD_DIR)/node-$(PKG_NODE_VERSION)/npm-cache \
|
||||
PREFIX="$(PKG_INSTALL_DIR)/usr/" \
|
||||
npm install -g `npm pack $(PKG_BUILD_DIR) | tail -n 1`
|
||||
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 \
|
||||
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
|
||||
|
||||
define Package/node-arduino-firmata/install
|
||||
mkdir -p $(1)/usr/lib/node
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/. $(1)/usr/lib/node
|
||||
rm -rf $(1)/usr/lib/node/arduino-firmata/node_modules/serialport/ \
|
||||
$(1)/usr/lib/node/arduino-firmata/patches \
|
||||
$(1)/usr/lib/node/arduino-firmata/.p* \
|
||||
$(1)/usr/lib/node/arduino-firmata/.quilt* \
|
||||
$(1)/usr/lib/node/arduino-firmata/.built* \
|
||||
$(1)/usr/lib/node/arduino-firmata/.config*
|
||||
# Strip PKG_BUILD_DIR from useless metadata inserted by npm install
|
||||
# https://github.com/npm/npm/issues/10393
|
||||
# https://github.com/npm/npm/issues/12110
|
||||
find $(1)/usr/lib/node -name package.json -exec sed -i -e 's,$(PKG_BUILD_DIR),,g' {} +
|
||||
$(INSTALL_DIR) $(1)/usr/lib/node/$(PKG_NPM_NAME)
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{package.json,README.md} \
|
||||
$(1)/usr/lib/node/$(PKG_NPM_NAME)/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{tests,*.txt} \
|
||||
$(1)/usr/lib/node/$(PKG_NPM_NAME)/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{node_modules,lib} \
|
||||
$(1)/usr/lib/node/$(PKG_NPM_NAME)/
|
||||
$(CP) ./files/* $(1)/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,node-arduino-firmata))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user