Skip to content

Commit a6506a8

Browse files
author
KJ Lawrence
committed
Improve documentation for Linux
1 parent cb6f05e commit a6506a8

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ This package binds OpenALPR with Node.js
88
Use npm to get the node-openalpr package. We'll attempt to use node-pre-gyp to compile from source, but if
99
that's not possible we'll fallback to precompiled binaries.
1010

11-
```npm install node-openalpr```
11+
### Linux
12+
13+
0. Install OpenALPR (https://github.com/openalpr/openalpr/wiki/Compilation-instructions-(Ubuntu-Linux))
14+
0. Run ```npm install node-openalpr```
15+
16+
### Windows
17+
0. Run ```npm install node-openalpr```
1218

1319
### Example
1420

package.json

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
{
22
"name": "node-openalpr",
33
"description": "Node.js OpenALPR Bindings",
4-
"version": "1.0.4",
4+
"version": "1.0.5",
5+
"license": "AGPL",
6+
"keywords": [
7+
"bindings",
8+
"license",
9+
"plate",
10+
"recognition",
11+
"lpr",
12+
"openalpr"
13+
],
514
"author": {
615
"name": "netPark",
716
"email": "klawrence@netpark.us",
@@ -13,15 +22,17 @@
1322
"email": "klawrence@netpark.us"
1423
}
1524
],
25+
1626
"repository": {
1727
"type": "git",
18-
"url": "https://github.com/netPark/node-openalpr"
28+
"url": "git://github.com/netPark/node-openalpr.git"
1929
},
2030
"dependencies": {
2131
"fs-extra": "^0.23.1",
2232
"nan": "^2.0.5",
2333
"node-pre-gyp": "https://github.com/mapbox/node-pre-gyp.git"
2434
},
35+
"main": "./src/openalpr",
2536
"binary": {
2637
"module_name": "node_openalpr",
2738
"module_path": "release/{platform}_{arch}/",
@@ -34,7 +45,5 @@
3445
"scripts": {
3546
"install": "node-pre-gyp install --build-from-source --fallback-to-build",
3647
"postinstall": "node -e \"var fs = require('fs-extra'); fs.remove ('build');\""
37-
},
38-
"main": "./src/openalpr",
39-
"license": "AGPL"
48+
}
4049
}

0 commit comments

Comments
 (0)