sip-lab 1.12.30 → 1.12.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -35,18 +35,18 @@ If this happens try installing them by doing:
35
35
  apt install build-essential automake autoconf libtool libspeex-dev libopus-dev libsdl2-dev libavdevice-dev libswscale-dev libv4l-dev libopencore-amrnb-dev libopencore-amrwb-dev libvo-amrwbenc-dev libvo-amrwbenc-dev libboost-dev libtiff-dev libpcap-dev libssl-dev uuid-dev cmake
36
36
  ```
37
37
 
38
- To test from within this repo you will need to download and build dependencies. Do:
38
+ Then build the dependencies:
39
39
  ```
40
40
  ./build_deps.sh
41
41
  ```
42
42
 
43
- Then build the node addon by doing:
43
+ and build the node addon by doing:
44
44
  ```
45
45
  npx node-gyp configure
46
46
  npx node-gyp build
47
47
  ```
48
48
 
49
- And run some sample script from subfolder samples:
49
+ Then run some sample script from subfolder samples:
50
50
  ```
51
51
  node samples/simple.js
52
52
  ```
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "sip-lab",
3
- "version": "1.12.30",
3
+ "version": "1.12.31",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "engines": {
7
7
  "node": ">=15.0.0"
8
8
  },
9
9
  "scripts": {
10
- "install": "node-gyp-build",
10
+ "install": "./install.sh",
11
11
  "test": "./runtests"
12
12
  },
13
13
  "repository": {