From 6989484e7c0ed1ceab545c52ebbedaa9419a306d Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Sat, 14 Sep 2019 14:08:01 -0700 Subject: [PATCH] Add note about homebrew deps for debian build Fixes: https://github.com/webtorrent/webtorrent-desktop/issues/1689 --- README.md | 5 +++++ package.json | 1 + 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 9eb82d02..457d933f 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,11 @@ The Mac app can only be packaged from **macOS**. The Linux app can be packaged from **any** platform. +If packaging from Mac, install system dependencies with Homebrew by running: + +``` +npm run install-system-deps +``` #### Recommended readings to start working in the app diff --git a/package.json b/package.json index ac1f288c..85adaf94 100644 --- a/package.json +++ b/package.json @@ -100,6 +100,7 @@ "build": "buble src --output build", "clean": "node ./bin/clean.js", "gh-release": "gh-release", + "install-system-deps": "brew install fakeroot dpkg", "open-config": "node ./bin/open-config.js", "package": "node ./bin/package.js", "prepublish": "npm run build",