Merge pull request #9046 from nxhack/fix_powerpc_fail
node-serialport: fix powerpc build fail
This commit is contained in:
commit
c2093cf4d3
|
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||||
PKG_NPM_NAME:=serialport
|
PKG_NPM_NAME:=serialport
|
||||||
PKG_NAME:=node-$(PKG_NPM_NAME)
|
PKG_NAME:=node-$(PKG_NPM_NAME)
|
||||||
PKG_VERSION:=7.1.5
|
PKG_VERSION:=7.1.5
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
|
PKG_SOURCE:=$(PKG_NPM_NAME)-$(PKG_VERSION).tgz
|
||||||
PKG_SOURCE_URL:=https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
|
PKG_SOURCE_URL:=https://registry.npmjs.org/$(PKG_NPM_NAME)/-/
|
||||||
|
@ -31,7 +31,7 @@ define Package/node-serialport
|
||||||
CATEGORY:=Languages
|
CATEGORY:=Languages
|
||||||
TITLE:=Node.js package to access serial ports
|
TITLE:=Node.js package to access serial ports
|
||||||
URL:=https://serialport.io/
|
URL:=https://serialport.io/
|
||||||
DEPENDS:=+node +node-npm
|
DEPENDS:=+node +node-npm +node-serialport-bindings
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/node-serialport/description
|
define Package/node-serialport/description
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
--- a/package.json
|
||||||
|
+++ b/package.json
|
||||||
|
@@ -41,7 +41,6 @@
|
||||||
|
],
|
||||||
|
"dependencies": {
|
||||||
|
"@serialport/binding-mock": "^2.0.5",
|
||||||
|
- "@serialport/bindings": "^2.0.8",
|
||||||
|
"@serialport/parser-byte-length": "^2.0.2",
|
||||||
|
"@serialport/parser-cctalk": "^2.0.2",
|
||||||
|
"@serialport/parser-delimiter": "^2.0.2",
|
Loading…
Reference in New Issue