Skip to content

Commit

Permalink
fix(linux): Add dependencies for supporting Electron Tray (libappindi…
Browse files Browse the repository at this point in the history
…cator) & Notifications (libnotify) for more Linux targets (#1339)

pacman: add default dependencies "libnotify", "libappindicator-gtk2", "libappindicator-gtk3", "libappindicator-sharp"

rpm: add default dependencies - "libnotify", "libappindicator"

Close #1338
  • Loading branch information
sidneys authored and develar committed Mar 7, 2017
1 parent c4744af commit 79c94bd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/electron-builder/src/targets/fpm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,10 @@ export default class FpmTarget extends Target {
depends = ["gconf2", "gconf-service", "libnotify4", "libappindicator1", "libxtst6", "libnss3"]
}
else if (target === "pacman") {
depends = ["c-ares", "ffmpeg", "gtk3", "http-parser", "libevent", "libvpx", "libxslt", "libxss", "minizip", "nss", "re2", "snappy"]
depends = ["c-ares", "ffmpeg", "gtk3", "http-parser", "libevent", "libvpx", "libxslt", "libxss", "minizip", "nss", "re2", "snappy", "libnotify", "libappindicator-gtk2", "libappindicator-gtk3", "libappindicator-sharp"]
}
else if (target === "rpm") {
depends = ["libnotify", "libappindicator"]
}
else {
depends = []
Expand Down

0 comments on commit 79c94bd

Please sign in to comment.