You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
2.4 KiB

  1. #
  2. # Copyright (C) 2014 Arduino LLC
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NPM_NAME:=arduino-firmata
  9. PKG_NAME:=node-$(PKG_NPM_NAME)
  10. PKG_VERSION:=0.3.4
  11. PKG_RELEASE:=4
  12. PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
  13. PKG_SOURCE_URL:=https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
  14. PKG_HASH:=d7157e02867eae82887cb5e17b90c963fe7489bacd464110bfd20c672b8d5a98
  15. PKG_BUILD_DEPENDS:=node/host
  16. PKG_USE_MIPS16:=0
  17. PKG_MAINTAINER:=Hirokazu MORIKAWA <morikw2@gmail.com>
  18. PKG_LICENSE:=MIT
  19. PKG_LICENSE_FILES:=LICENSE.txt
  20. include $(INCLUDE_DIR)/package.mk
  21. define Package/node-arduino-firmata
  22. SUBMENU:=Node.js
  23. SECTION:=lang
  24. CATEGORY:=Languages
  25. TITLE:=Arduino Firmata implementation for Node.js
  26. URL:=https://www.npmjs.com/package/arduino-firmata
  27. DEPENDS:=+node +node-npm +node-serialport
  28. endef
  29. define Package/node-arduino-firmata/description
  30. Arduino Firmata protocol (http://firmata.org) implementation on Node.js.
  31. endef
  32. TAR_OPTIONS+= --strip-components 1
  33. TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)
  34. NODEJS_CPU:=$(subst powerpc,ppc,$(subst aarch64,arm64,$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))))
  35. TMPNPM:=$(shell mktemp -u XXXXXXXXXX)
  36. TARGET_CFLAGS+=$(FPIC)
  37. TARGET_CPPFLAGS+=$(FPIC)
  38. NPM_FLAGS:= \
  39. $(MAKE_VARS) \
  40. $(MAKE_FLAGS) \
  41. npm_config_arch=$(NODEJS_CPU) \
  42. npm_config_target_arch=$(NODEJS_CPU) \
  43. npm_config_build_from_source=true \
  44. npm_config_nodedir=$(STAGING_DIR)/usr/ \
  45. npm_config_prefix=$(PKG_INSTALL_DIR)/usr/ \
  46. npm_config_cache=$(TMP_DIR)/npm-cache-$(TMPNPM) \
  47. npm_config_tmp=$(TMP_DIR)/npm-tmp-$(TMPNPM)
  48. define Build/Compile
  49. $(NPM_FLAGS) npm i -g --production $(PKG_BUILD_DIR)
  50. $(NPM_FLAGS) npm i --production --prefix=$(PKG_BUILD_DIR) --target_arch=$(NODEJS_CPU) --prefer-dedupe
  51. rm -rf $(TMP_DIR)/npm-tmp-$(TMPNPM)
  52. rm -rf $(TMP_DIR)/npm-cache-$(TMPNPM)
  53. endef
  54. define Package/node-arduino-firmata/install
  55. $(INSTALL_DIR) $(1)/usr/lib/node/$(PKG_NPM_NAME)
  56. $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{package.json,README.md} \
  57. $(1)/usr/lib/node/$(PKG_NPM_NAME)/
  58. $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{tests,*.txt} \
  59. $(1)/usr/lib/node/$(PKG_NPM_NAME)/
  60. $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/$(PKG_NPM_NAME)/{node_modules,lib} \
  61. $(1)/usr/lib/node/$(PKG_NPM_NAME)/
  62. $(CP) ./files/* $(1)/
  63. endef
  64. $(eval $(call BuildPackage,node-arduino-firmata))