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.

77 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:=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. $(MAKE_FLAGS) \
  42. npm_config_arch=$(CONFIG_ARCH) \
  43. npm_config_nodedir=$(BUILD_DIR)/node-$(PKG_NODE_VERSION)/ \
  44. npm_config_cache=$(BUILD_DIR)/node-$(PKG_NODE_VERSION)/npm-cache \
  45. PREFIX="$(PKG_INSTALL_DIR)/usr/" \
  46. npm install -g $(PKG_BUILD_DIR)
  47. endef
  48. define Package/node-arduino-firmata/install
  49. mkdir -p $(1)/usr/lib/node
  50. $(CP) $(PKG_INSTALL_DIR)/usr/lib/node_modules/. $(1)/usr/lib/node
  51. rm -rf $(1)/usr/lib/node/arduino-firmata/node_modules/serialport/ \
  52. $(1)/usr/lib/node/arduino-firmata/patches \
  53. $(1)/usr/lib/node/arduino-firmata/.p* \
  54. $(1)/usr/lib/node/arduino-firmata/.quilt* \
  55. $(1)/usr/lib/node/arduino-firmata/.built* \
  56. $(1)/usr/lib/node/arduino-firmata/.config*
  57. # Strip PKG_BUILD_DIR from useless metadata inserted by npm install
  58. # https://github.com/npm/npm/issues/10393
  59. # https://github.com/npm/npm/issues/12110
  60. find $(1)/usr/lib/node -name package.json -exec sed -i -e 's,$(PKG_BUILD_DIR),,g' {} +
  61. $(CP) ./files/* $(1)/
  62. endef
  63. $(eval $(call BuildPackage,node-arduino-firmata))