diff --git a/binding.gyp b/binding.gyp index 09d3390c..9f48d664 100644 --- a/binding.gyp +++ b/binding.gyp @@ -100,6 +100,7 @@ '<(module_root_dir)/lib/liblcms2.so', '<(module_root_dir)/lib/libpng16.so', '<(module_root_dir)/lib/libxml2.so', + '<(module_root_dir)/lib/liborc-0.4.so', # Ensure runtime linking is relative to sharp.node '-Wl,-rpath=\'$${ORIGIN}/../../lib\'' ] diff --git a/docs/install.md b/docs/install.md index 4fafb124..01947b9f 100644 --- a/docs/install.md +++ b/docs/install.md @@ -18,7 +18,7 @@ This involves an automated HTTPS download of approximately 6MB. Most recent 64-bit Linux-based operating systems should "just work", e.g.: -* Debian 8 +* Debian 7, 8 * Ubuntu 12.04, 14.04, 14.10, 15.04, 15.10 * Centos 7 * Fedora 20, 21 @@ -53,7 +53,7 @@ brew install homebrew/science/vips For GIF input and WebP output suppport use: ```sh -brew install homebrew/science/vips --with-graphicsmagick --with-webp +brew install homebrew/science/vips --with-imagemagick --with-webp ``` A missing or incorrectly configured _Xcode Command Line Tools_ installation diff --git a/package.json b/package.json index b49d47f4..4c6e750f 100644 --- a/package.json +++ b/package.json @@ -22,8 +22,8 @@ ], "description": "High performance Node.js module to resize JPEG, PNG, WebP and TIFF images using the libvips library", "scripts": { - "clean": "rm -rf build/ include/ lib/ coverage/ test/fixtures/output.*", - "test": "VIPS_WARNING=0 node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --slow=5000 --timeout=20000 ./test/unit/*.js", + "clean": "rm -rf node_modules/ build/ include/ lib/ coverage/ test/fixtures/output.*", + "test": "VIPS_WARNING=0 node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --slow=5000 --timeout=30000 ./test/unit/*.js", "test-win": "node ./node_modules/mocha/bin/mocha --slow=5000 --timeout=30000 ./test/unit/*.js", "test-leak": "./test/leak/leak.sh", "test-packaging": "./packaging/test.sh", @@ -50,8 +50,8 @@ "bluebird": "^3.0.5", "color": "^0.10.1", "nan": "^2.1.0", - "semver": "^5.0.3", - "request": "^2.65.0", + "semver": "^5.1.0", + "request": "^2.67.0", "tar": "^2.2.1" }, "devDependencies": { @@ -60,7 +60,7 @@ "exif-reader": "1.0.0", "icc": "^0.0.2", "istanbul": "^0.4.0", - "mocha": "^2.3.3", + "mocha": "^2.3.4", "mocha-jshint": "^2.2.5", "node-cpplint": "^0.4.0", "rimraf": "^2.4.3",