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.

78 lines
2.5 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:=2
  12. PKG_SOURCE_PROTO:=git
  13. PKG_SOURCE_URL:=https://github.com/shokai/node-arduino-firmata.git
  14. PKG_MIRROR_HASH:=1aef93dc704ea771b9eab51cb64103533f829aee5b2886ad55d173adf3f11ede
  15. PKG_SOURCE_VERSION:=v0.3.4
  16. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_SOURCE_VERSION)
  17. PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_VERSION).tar.gz
  18. PKG_BUILD_DEPENDS:=node/host
  19. PKG_NODE_VERSION:=`$(STAGING_DIR_HOSTPKG)/bin/node --version`
  20. PKG_MAINTAINER:=John Crispin <blogic@openwrt.org>
  21. PKG_LICENSE:=MIT
  22. PKG_LICENSE_FILES:=LICENSE.txt
  23. include $(INCLUDE_DIR)/package.mk
  24. define Package/node-arduino-firmata
  25. SUBMENU:=Node.js
  26. SECTION:=lang
  27. CATEGORY:=Languages
  28. TITLE:=Node.js package to access serial ports for reading and writing
  29. URL:=https://www.npmjs.org/package/serialport
  30. DEPENDS:=+node +node-npm +node-serialport
  31. endef
  32. define Package/node-arduino-firmata/description
  33. Node.js package to access serial ports for reading and writing OR Welcome your robotic JavaScript overlords. Better yet, program them!
  34. endef
  35. define Build/Prepare
  36. /bin/tar xzf $(DL_DIR)/$(PKG_SOURCE) -C $(PKG_BUILD_DIR) --strip-components 1
  37. $(Build/Patch)
  38. endef
  39. EXTRA_LDFLAGS="-L$(TOOLCHAIN_DIR)/lib/ -Wl,-rpath-link $(TOOLCHAIN_DIR)/lib/" \
  40. define Build/Compile
  41. cd $(PKG_BUILD_DIR) ; \
  42. $(MAKE_FLAGS) \
  43. npm_config_arch=$(CONFIG_ARCH) \
  44. npm_config_nodedir=$(BUILD_DIR)/node-$(PKG_NODE_VERSION)/ \
  45. npm_config_cache=$(BUILD_DIR)/node-$(PKG_NODE_VERSION)/npm-cache \
  46. PREFIX="$(PKG_INSTALL_DIR)/usr/" \
  47. npm install -g `npm pack $(PKG_BUILD_DIR) | tail -n 1`
  48. endef
  49. define Package/node-arduino-firmata/install
  50. mkdir -p $(1)/usr/lib/node
  51. $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/. $(1)/usr/lib/node
  52. rm -rf $(1)/usr/lib/node/arduino-firmata/node_modules/serialport/ \
  53. $(1)/usr/lib/node/arduino-firmata/patches \
  54. $(1)/usr/lib/node/arduino-firmata/.p* \
  55. $(1)/usr/lib/node/arduino-firmata/.quilt* \
  56. $(1)/usr/lib/node/arduino-firmata/.built* \
  57. $(1)/usr/lib/node/arduino-firmata/.config*
  58. # Strip PKG_BUILD_DIR from useless metadata inserted by npm install
  59. # https://github.com/npm/npm/issues/10393
  60. # https://github.com/npm/npm/issues/12110
  61. find $(1)/usr/lib/node -name package.json -exec sed -i -e 's,$(PKG_BUILD_DIR),,g' {} +
  62. $(CP) ./files/* $(1)/
  63. endef
  64. $(eval $(call BuildPackage,node-arduino-firmata))